webview不适用于日冕的本地html文件

时间:2015-02-03 05:17:23

标签: lua corona

local webView = native.newWebView( 0, 50, 320, 430 )
webView.anchorX = 0;
webView.anchorY = 0;
print("***************************************files/");
print("files/"..data[1].name..".html");
local htmlFile = "files/"..data[1].name..".html"

--Ancient Egypt
webView:request( "files/"..data[1].name..".html", system.ResourceDirectory );
webView:addEventListener( "urlRequest", webListener );

我必须在电晕中使用,然后才能打开我的本地html文件。如何在日冕中使用更好?

1 个答案:

答案 0 :(得分:0)

模拟器不支持webView。

在代码目录中使用“files”fodler构建应用程序时,也可以尝试使用以下代码:

webView:request( "files/"..data[1].name..".html");

而不是

webView:request( "files/"..data[1].name..".html", system.ResourceDirectory );

尝试使用数据[1]而不是数据[1] .name来查看它是否返回正确的值。