chore 抽象微服务基本类库
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
const originalFetch = window.fetch;
|
||||
|
||||
window.fetch = function (input, init) {
|
||||
if (init !== undefined && init.headers['RequestVerificationToken'] !== undefined) {
|
||||
delete init.headers['RequestVerificationToken'];
|
||||
}
|
||||
|
||||
return originalFetch.apply(this, arguments);
|
||||
};
|
||||
Reference in New Issue
Block a user