fix: 兼容 2.x skipErrorHandler 参数

This commit is contained in:
winixt 2023-12-13 19:50:59 +08:00
parent 67b4332eb8
commit c770762839

View File

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