mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
fix: 修复 request 初始化问题 (#198)
This commit is contained in:
parent
46ba7df273
commit
ae412e7308
@ -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