5

对s不是很熟悉XMLHttpRequest,但是我在使用谷歌浏览器扩展中的跨域功能。这很好用(我可以确认我得到了我需要的适当数据),但我似乎无法将它存储在“响应”变量中。

我会很感激任何帮助。

function getSource() {
    var response;
    var xmlhttp;

    xmlhttp=new XMLHttpRequest();
    xmlhttp.onreadystatechange=function() {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
             response = xmlhttp.responseText;
                 //IM CORRECTLY SET HERE
        }
        //I'M ALSO STILL WELL SET HERE
    }
    //ALL OF A SUDDEN I'M UNDEFINED.

    xmlhttp.open("GET","http://www.google.com",true);
    xmlhttp.send();

    return response; 
}
4

1 回答 1

6

onreadystatechange函数是异步的,即在函数完成之前它不会停止后面的代码运行。

出于这个原因,你正在以完全错误的方式进行。通常在异步代码中,回调用于能够在onreadystatechange事件触发时准确地调用,以便您知道您能够在那时检索您的响应文本。例如,这将是一个异步回调的情况:

function getSource(callback) {
    var response, xmlhttp;

    xmlhttp = new XMLHttpRequest;
    xmlhttp.onreadystatechange = function () {
      if (xmlhttp.readyState === 4 && xmlhttp.status === 200 && callback) callback(xmlhttp.responseText);
    }

    xmlhttp.open("GET", "http://www.google.com", true);
    xmlhttp.send();
}

把它想象成 using setTimeout,它也是异步的。以下代码在结束前不会挂起 100 000 000 000 000 秒,而是立即结束,然后等待计时器到时运行该函数。但是到那时,分配是无用的,因为它不是全局的,并且没有其他东西在分配的范围内。

function test()
{   var a;
    setTimeout(function () { a = 1; }, 100000000000000000); //high number for example only
    return a; // undefined, the function has completed, but the setTimeout has not run yet
    a = 1; // it's like doing this after return, has no effect
}
于 2013-10-06T23:55:23.273 回答