Intercept fetch() API requests and responses in JavaScript(在 JavaScript 中拦截 fetch() API 请求和响应)
问题描述
我想在 JavaScript 中拦截 fetch API 请求和响应.
I want to intercept fetch API requests and responses in JavaScript.
例如,在发送请求之前我要截取请求的 URL.我也想在响应到达后拦截它.
For example, before sending the request I want to intercept the request URL. I'd like to intercept the response once it arrives as well.
以下代码用于拦截所有XMLHTTPRequest
的响应.
The below code is for intercepting responses of all XMLHTTPRequest
s.
(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 实现相同的功能.我该怎么做?
I want to implement the same feature for fetch()
API. How can I do this?
推荐答案
为了拦截获取请求和参数,我们可以采用下面提到的方式.它解决了我的问题.
For intercepting the fetch request and parameter we can go for below mentioned way. its resolved my issue.
const constantMock = window.fetch;
window.fetch = function() {
// Get the parameter in arguments
// Intercept the parameter here
return constantMock.apply(this, arguments)
}
这篇关于在 JavaScript 中拦截 fetch() API 请求和响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 JavaScript 中拦截 fetch() API 请求和响应
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01