带有phonegap的XML HTTP请求始终不会连接

时间:2017-02-09 22:36:15

标签: javascript php android cordova

我有一个使用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();
//}

}

0 个答案:

没有答案