mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
fix: problem that can't receive rejected message caused by interceptors; 🐛
修复:无法接受响应失败的消息;
This commit is contained in:
parent
2021fb575d
commit
d1f84218c6
@ -108,10 +108,10 @@ function loadInterceptors(interceptors, options) {
|
||||
request.forEach(item => {
|
||||
let {onFulfilled, onRejected} = item
|
||||
if (!onFulfilled || typeof onFulfilled !== 'function') {
|
||||
onFulfilled = () => {}
|
||||
onFulfilled = config => config
|
||||
}
|
||||
if (!onRejected || typeof onRejected !== 'function') {
|
||||
onRejected = () => {}
|
||||
onRejected = error => Promise.reject(error)
|
||||
}
|
||||
axios.interceptors.request.use(
|
||||
config => onFulfilled(config, options),
|
||||
@ -122,10 +122,10 @@ function loadInterceptors(interceptors, options) {
|
||||
response.forEach(item => {
|
||||
let {onFulfilled, onRejected} = item
|
||||
if (!onFulfilled || typeof onFulfilled !== 'function') {
|
||||
onFulfilled = () => {}
|
||||
onFulfilled = response => response
|
||||
}
|
||||
if (!onRejected || typeof onRejected !== 'function') {
|
||||
onRejected = () => {}
|
||||
onRejected = error => Promise.reject(error)
|
||||
}
|
||||
axios.interceptors.response.use(
|
||||
response => onFulfilled(response, options),
|
||||
|
Loading…
x
Reference in New Issue
Block a user