fix: 修复 request 初始化问题 (#198)

This commit is contained in:
qlin 2023-06-14 15:11:43 +08:00 committed by GitHub
parent 46ba7df273
commit ae412e7308

View File

@ -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);
};