如何使用纯Javascript实现同步Ajax调用?

时间:2014-03-17 19:28:07

标签: javascript ajax

我需要实现同步Ajax调用机制。我已经在我的助手中实现了ajax调用函数,如下所示:

MH.helper = {
    ajax : function (option) {
        if(option !== undefined) {
            for(var opt in option) {
                this[opt] = option[opt];
            }
        }

        if (window.XMLHttpRequest) {
            // code for IE7+, Firefox, Chrome, Opera, Safari
            this.xhr=new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            this.xhr=new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
}

我也实现了Ajax原型,如下所示:

MH.helper.ajax.prototype = {
    // XMLHttpRequest obj
    xhr : null,

    // request url
    url: '',

    // post funciton
    post: function() {

    var xhr = this.xhr;
    var that = this;

    xhr.onreadystatechange=function() {
        if(xhr.readyState==4 && xhr.status==200){
            if(that.complete && ( typeof that.complete === 'function' )) {
                that.complete(xhr.responseText);
            }
        }
    }

    var data = MH.helper.serialize(this.data, true);

    xhr.open("POST",this.url,true);
    xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
    xhr.send(data);
},

// get funciton
get: function() {

    var xhr = this.xhr;
    var that = this;

    xhr.onreadystatechange=function() {
        if(xhr.readyState==4 && xhr.status==200){
            if(that.complete && ( typeof that.complete === 'function' )) {
                that.complete(xhr.responseText);
            }
        }
    }

    var data = MH.helper.serialize(this.data);
    xhr.open("GET",this.url+data,true);
    xhr.send(data);
},

// callback when request done
complete: null
}

任何人都知道如何使用我的Ajax函数实现同步调用?

2 个答案:

答案 0 :(得分:3)

xhr.open("POST",this.url,true)

如果您将false作为第3个参数而不是true传递 - 则会同步执行此调用。

但我的建议 - 不要。始终使用回调函数。

答案 1 :(得分:1)

false作为xhr.open的第三个参数传递。

来源:SpecificationMDN article