我正在我的phonegap应用程序中实现
jquery.min.js,但它显示CordovaWebView超时错误.
我也试过了
我也试过了
super.setIntegerProperty("loadUrlTimeoutValue",10000);
但它只是花时间,在那之后,同样的“CordovaWebView:TIMEOUT ERROR!”来了.
请为我提供适当的解决方案.
解决方法
我猜你的主脚本太长了,无法执行:
//code executed after the loading of the page (if your using jquery) $(function() { //if this method is too heavy and takes too long to execute,it will trigger the TIMEOUT ERROR. doSomeStuff(); });
不想在此方法上添加超时以便让应用程序启动,然后启动繁重的脚本(您可能希望显示加载图像或类似的东西).
代码段:
//code executed after the loading of the page $(function() { //in mobile environment,this timeout leaves time for the app to launch before we start any heavy process. setTimeout(function(){ doSomeStuff(); },100); });