我已将CK编辑器嵌入到html页面中。现在我无法访问我的lua代码中CK Editor的文本区域中输入的数据。有没有办法在电晕中检索数据?
答案 0 :(得分:0)
您无法直接执行此操作,因为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 )