mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: await request error
This commit is contained in:
commit
3e6aef094b
@ -163,7 +163,7 @@ function handleRequestError({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!skipObj[errorKey] && errorHandler[errorKey]) {
|
if (!skipObj[errorKey] && errorHandler[errorKey]) {
|
||||||
errorHandler[errorKey](error);
|
return errorHandler[errorKey](error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,11 +179,11 @@ export const request = (url, data, options = {}) => {
|
|||||||
const userConfig = userConfigHandler(url, data, options);
|
const userConfig = userConfigHandler(url, data, options);
|
||||||
const context = createContext(userConfig);
|
const context = createContext(userConfig);
|
||||||
|
|
||||||
return currentRequestInstance.request(context).then(() => {
|
return currentRequestInstance.request(context).then(async () => {
|
||||||
if (!context.error) {
|
if (!context.error) {
|
||||||
return context.config.useResonse ? context.response : context.response.data;
|
return context.config.useResonse ? context.response : context.response.data;
|
||||||
}
|
}
|
||||||
handleRequestError(context);
|
await handleRequestError(context);
|
||||||
return Promise.reject(context.error);
|
return Promise.reject(context.error);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user