我正在使用 phonegap 开发移动应用程序。当服务器连接超时时,如何关闭 Android 应用程序。
我正在使用 javascript ajax XMLHttpRequest 对象。
我的代码: var xmlhttp = new XMLHttpRequest();xmlhhttp.open('POST', url, true); xmlhttp.onreadystatechange = function () {XXXXX} var xmlHttpTimeout=setTimeout(ajaxTimeout,10000);function ajaxTimeout(){navigator.app.exitApp();}
但应用程序仍然没有关闭。
问候,毗湿奴