0

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

请注意,从一页移动到另一页时出现此错误

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

并且应用程序被强制关闭。请指导我解决这个问题。我还附上了屏幕截图。它在 android 4.x 版本中出现

崩溃的图像

更新

$.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");
                }
            });
4

1 回答 1

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

于 2012-07-03T08:23:39.657 回答