mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修复 request 初始化问题
This commit is contained in:
parent
5cadb75cdb
commit
b5ec67a666
@ -15,7 +15,7 @@ function getRequestInstance() {
|
||||
return createRequest(defaultConfig);
|
||||
}
|
||||
|
||||
const currentRequest = getRequestInstance();
|
||||
let currentRequest;
|
||||
|
||||
export const rawRequest = (url, data, options = {}) => {
|
||||
if (typeof options === 'string') {
|
||||
@ -23,6 +23,9 @@ 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