我有一个使用XMLHTTP请求与PHP文件通信的phonegap应用程序,问题是它连接正常,但过了一段时间它似乎没有再次连接。它再次出现,即它一直持续下去。 Js COde如下
function news(){
//if(isPhoneGapReady && isConnected){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
localStorage.news=xmlhttp.responseText;
document.getElementById('item').innerHTML=localStorage.news;
}
}
xmlhttp.open("POST","http://url.com",true);
xmlhttp.send();
//}
}