编程语言
首页 > 编程语言> > 在Javascript中拦截Fetch()API响应和请求

在Javascript中拦截Fetch()API响应和请求

作者:互联网

我想拦截Javascript中的fetch API请求和响应.

例如:
在发送请求之前要拦截请求URL并且一旦获得响应就想拦截响应.

以下代码用于拦截所有XMLHTTPRequest的响应.

(function(open) {
 XMLHttpRequest.prototype.open = function(XMLHttpRequest) {
    var self = this;
    this.addEventListener("readystatechange", function() {
        if (this.responseText.length > 0 && this.readyState == 4 && this.responseURL.indexOf('www.google.com') >= 0) {
            Object.defineProperty(self, 'response', {
                get: function() { return bValue; },
                set: function(newValue) { bValue = newValue; },
                enumerable: true,
                configurable: true
            });
            self.response = 'updated value' //Intercepted Value 
        }
    }, false);
    open.apply(this, arguments);
};
})(XMLHttpRequest.prototype.open);

我想为Fetch()API实现相同的功能.

提前致谢..

解决方法:

为了拦截获取请求和参数,我们可以采用下面提到的方式.它解决了我的问题.

 const constantMock = window.fetch;
 window.fetch = function() {
     // Get the parameter in arguments
     // Intercept the parameter here 
    return constantMock.apply(this, arguments)
 }

标签:fetch-api,javascript,ajax,xmlhttprequest,interceptor
来源: https://codeday.me/bug/20191001/1838990.html