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