cyywl_server/yudao-ui-app/util/request/responseInterceptors.js

27 lines
662 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* 响应拦截
* @param {Object} http
*/
module.exports = vm => {
uni.$u.http.interceptors.response.use(
res => {
//对响应成功做点什么 可使用async await 做异步操作
//可以根据业务情况做相应的处理
if (res.data.code === 0) {
return res.data
} else {
console.log(res)
//错误信息统一处理
uni.$u.toast(res.data.msg)
return Promise.reject(res)
}
},
err => {
//对响应错误做点什么 statusCode !== 200
console.log(err)
uni.$u.toast('响应错误' + err.statusCode)
return Promise.reject(err)
}
)
}