应用程序出错并获得力量关闭

时间:2012-07-03 06:35:26

标签: android html cordova

在我的android phonegap应用程序中,有时我会收到应用程序错误

注意 从一个页面移动到另一个页面时出现此错误

 **"A network error occurred.(file:///android_asset/www/home/home.html?userid=91)"** 

和应用程序被强制关闭。请指导我解决这个问题。我也附上截图。它在android 4.x版本中明了

image of crash

更新

$.ajax({
                cache: false,
                async: true,
                type: "POST",
                dataType: "json",
                url:url +"Status",
                data: '{"NO" : "' + no}',
                contentType: "application/json;charset=utf-8",
                success: function (r) 
                {
                     window.open("../index/index.html?id="+id);
                },
                error: function (e) 
                {
                    alert("No Network");
                }
            });

1 个答案:

答案 0 :(得分:1)

在URL上传递参数时,Android 4.x操作系统中存在一个错误:

https://code.google.com/p/android/issues/detail?id=17535 https://code.google.com/p/android/issues/detail?id=17327