在我的 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");
}
});