开发者

Javascript Auto-fresh XMLHttpRequest problem

I'm writing a desktop gadget which should refresh every 10 minutes or so (It's ten seconds here). What I've determined is that every time I execute the setTimeout, the XML doesn't load again.

I don't know what kind of problem this is. I made sure that the objects are set to null, but they don't re-initialize and I'm left with a blank XML object.

setTimeout("bg_load();getXML()",10000);

function getXML()
{                   
    stat = readSetting();
    url = "http://www.weather.gov/xml/current_obs/" + stat[0] + ".xml"

    rssObj = new XMLHttpRequest();
    rssObj.open("GET", url, false);
    rssObj.onreadystatechange = function() {
    if (rssObj.readyState === 4) {
        if (rssObj.status === 200) {    
            document.getElementById("gadgetContent").innerHTML = "";    
            rssXML = rssObj.responseXML;
        } else {
            var chkConn;
            document.getElementById("gadgetContent").innerHTML = "Unable to connect...";                
        }
    } else {
  开发者_开发百科      document.getElementById("gadgetContent").innerHTML = "Connecting...";
        }
    }   
    rssObj.send(null);

getImage(rssXML);
getText(rssXML);

rssObj = null; rssXML = null;
}


With SJAX (Synchronous Ajax), you shouldn't use 'onreadystatechange', and in the code, you pull the response text directly out of the XMLHttpRequest after sending.

Don't Use onreadystatechange: https://developer.mozilla.org/en/xmlhttprequest#onreadystatechange

Example of pulling the responseText out: http://www.hunlock.com/blogs/Snippets:_Synchronous_AJAX

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜