mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +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);
|
const { dataHandler, errorHandler } = getCustomerHandler(context, options);
|
||||||
|
|
||||||
return currentRequestInstance.request(context).then(async () => {
|
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) {
|
if (!context.error) {
|
||||||
return dataHandler(context.response.data, context.response);
|
return dataHandler(context.response.data, context.response);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user