mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 兼容 2.x skipErrorHandler 参数
This commit is contained in:
parent
67b4332eb8
commit
c770762839
@ -120,6 +120,12 @@ export const request = (url, data, options = {}) => {
|
||||
const { dataHandler, errorHandler } = getCustomerHandler(context, options);
|
||||
|
||||
return currentRequestInstance.request(context).then(async () => {
|
||||
if (context.config.skipErrorHandler) {
|
||||
console.warn('3.x 已移除 skipErrorHandler 参数,请改用 dataHandler 处理');
|
||||
if (context.config.skipErrorHandler === true || context.response?.data?.code === context.config.skipErrorHandler) {
|
||||
return Promise.reject(context.response);
|
||||
}
|
||||
}
|
||||
if (!context.error) {
|
||||
return dataHandler(context.response.data, context.response);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user