如何攔截或修改原生ajax請求

jQuery已經實現了各類 ajax 事件,如 beforeSend 等,但原生的 XMLHttpRequest 並無這種事件。在沒有用 jQuery的狀況下,若是想修改 ajax 請求,得作一些特殊的處理。如下是我處理的方法:ajax

XMLHttpRequest.prototype._open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url, async) {
    // 用對象便於修改參數
    var options = {
        method: method,
        url: url,
        async: async
    };
    if('function' === typeof window.beforeXMLHttpRequestSend) {
        if(!window.beforeXMLHttpRequestSend(this, options)) {
            return;
        }
    }
    this._open(options.method, options.url, options.async);
};


window.beforeXMLHttpRequestSend = function(xhr, options) {
    //重置參數
    options.url = 'reset url';
    options.method = 'PUT';
    options.async = false;
    
    //禁止發送請求
    //return false;
    
    //發送請求
    return true;    
};
相關文章
相關標籤/搜索