Cordova应用程序的自定义“未找到”

时间:2013-12-29 04:30:00

标签: cordova

我在Cordova应用中加载了一个远程URL。有时手机无法加载页面,显示常见的浏览器未找到页面。

如何展示自己的404页面?

1 个答案:

答案 0 :(得分:0)

您可以使用XMLHttpRequest状态进行检查,如果XMLHttpRequest.status返回404,则可以显示您的自定义页面。

var httpcall = new XMLHttpRequest();
var params = "";
..
..
httpcall.open("POST", URL, true);

httpcall.onreadystatechange = function() { // Call a function when the state changes.
   if (httpcall.status == 404) {
       ...
       ... // Your custom code
   }
}

httpc.send(params);