微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

拦截Java语言中的FetchAPI响应和请求

如何解决拦截Java语言中的FetchAPI响应和请求

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

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

解决方法

我想拦截Javascript中的提取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实现相同的功能。

提前致谢..

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。