如何从corona sdk中检索CK Editor中的数据?

我已经在一个html页面中嵌入了CK Editor。现在我无法在lua代码中访问在CK Editor的文本区域中键入的数据。有没有办法在corona中检索数据?

点赞
用户3041972
用户3041972

你不能直接在 Corona Webview 中进行此操作,因为其方法有限。但是,您可以进行 HTTP 调用并自己分离数据(也就是编辑器数据伴随调用一起)。我已经在其他网站上这样做来获取货币价格。您可以查看下面如何调用 moneymex 网站,然后根据我知道存在的模式分离字符串。

secondField = display.newText( "Touch to Start", 155, 155, native.systemFontBold, 16 )
secondField:setFillColor( 1 )

local function networkListener( event )
      --local alert = native.showAlert( "Corona", "Crap", { "OK"} )
    if ( event.isError ) then
           local alert = native.showAlert( "Corona", event.response, { "OK"} )
    else
    local pattern = ">%d%d,%d%d%d<"
    local buyPrice = string.sub(event.response, string.find(event.response, pattern))
      -- local alert = native.showAlert( "Corona", string.sub(buyPrice, 2, -2), { "OK"} )
      local junkLength = string.len(event.response);
      local sellJunk = string.find(event.response, pattern)
        local  sellPriceJunk= string.sub(event.response, sellJunk+50, sellJunk-junkLength+1000)
        local sellPrice = string.sub(sellPriceJunk, string.find(sellPriceJunk, pattern))
secondField.text = string.sub(buyPrice,2,-2).." and "..string.sub(sellPrice,2,-2)

   local alert = native.showAlert( "Corona", string.sub(buyPrice,2,-2).." and "..string.sub(sellPrice,2,-2), { "OK"} )

end
end

network.request( "https://moneymex.com/Home/Welcome", "GET", networkListener )
2016-05-20 06:21:25