android – CordovaWebView:TIMEOUT ERROR

前端之家收集整理的这篇文章主要介绍了android – CordovaWebView:TIMEOUT ERROR前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在我的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);
});
原文链接:https://www.f2er.com/android/317887.html

猜你在找的Android相关文章