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

This commit is contained in:
qlin 2023-06-14 15:11:43 +08:00 committed by GitHub
parent 5cadb75cdb
commit bbb4db750d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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