mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
Revert "fix: 修复 request 初始化问题 (#198)"
This reverts commit ae412e7308bc39ef78699b0050eb11a41080c56b.
This commit is contained in:
parent
68e15ada4f
commit
421be6c19e
@ -15,7 +15,7 @@ function getRequestInstance() {
|
||||
return createRequest(defaultConfig);
|
||||
}
|
||||
|
||||
let currentRequest;
|
||||
const currentRequest = getRequestInstance();
|
||||
|
||||
export const rawRequest = (url, data, options = {}) => {
|
||||
if (typeof options === 'string') {
|
||||
@ -23,9 +23,6 @@ export const rawRequest = (url, data, options = {}) => {
|
||||
method: options,
|
||||
};
|
||||
}
|
||||
if (!currentRequest) {
|
||||
currentRequest = getRequestInstance();
|
||||
}
|
||||
return currentRequest(url, data, options);
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user