fix: 修复 request 初始化问题

This commit is contained in:
winixt 2023-06-14 15:08:32 +08:00
parent 5cadb75cdb
commit b5ec67a666

View File

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