我想在 JavaScript 中拦截 fetch API 请求和响应。
例如,在发送请求之前,我想拦截请求 URL。一旦响应到达,我也想拦截它。
下面的代码用于拦截所有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实现相同的功能。我怎样才能做到这一点?