加快json加载

时间:2012-06-22 13:22:26

标签: javascript json variables delay

我正在使用一些本地json文件,但是我在加载速度方面遇到了一些问题。我的服务器只是一个用python制作的小型网络服务器,我通常用它来尝试我的javascript代码。 我的脚本只适用于Firefox,我必须延迟60000毫秒(或使用firebug)。 脚本是:

function geisson()
{
var iabile = new XMLHttpRequest();

iabile.open("GET", "longanocard.json", true);
iabile.send(null);


PerdiTempo(60000);

var objectjson = {};
var arrayCards= []; //creazione dell'array che conterrà le cards


objectson = JSON.parse(iabile.responseText);

arrayCards = objectson.cards;
//alert(arrayCards[0].__guid__.toSource());


var qwerty = arrayCards[0].__guid__;

var mela = "http://www.airpim.com/png/public/card/" + qwerty + "?width=292";    


document.location = mela;
//windows.location.href= mela;
}

PerdiTempo是我用于延迟的函数:

function PerdiTempo(ms)
{
ms += new Date().getTime();
while (new Date() < ms){}
}

如何加快文件longanocard.json的加载速度?为什么延迟不能与其他浏览器一起使用?

1 个答案:

答案 0 :(得分:2)

你应该真的避免以这种方式等待异步响应(你怎么知道延迟JSON解析的延迟时间?),而是使用onreadystatechange事件代替你的请求

function geisson() {

    var iabile = new XMLHttpRequest();

    iabile.onreadystatechange = function(){
        if(iabile.readyState === 4 && iabile.status === 200) {
            var objectjson = {};
            var arrayCards= []; //creazione dell'array che conterrà le cards
            objectson = JSON.parse(iabile.responseText);

            ...
            /* codice restante qui */

        }
    }
    iabile.open("GET", "longanocard.json", true);
    iabile.send(null);

}