responseInterceptors.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * 响应拦截
  3. * @param {Object} http
  4. */
  5. module.exports = (vm) => {
  6. uni.$u.http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
  7. const data = response.data
  8. // 自定义参数
  9. const custom = response.config?.custom
  10. if (data.code != 1) {
  11. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  12. if (data.msg=='请先登录') {
  13. uni.clearStorage()
  14. }
  15. if (data.msg) {
  16. uni.$u.toast(data.msg)
  17. }
  18. }
  19. // if (data.code !== 200) { // 服务端返回的状态码不等于200,则reject()
  20. // // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  21. // if (custom.toast !== false) {
  22. // uni.$u.toast(data.message)
  23. // }
  24. // // 如果需要catch返回,则进行reject
  25. // if (custom?.catch) {
  26. // return Promise.reject(data)
  27. // } else {
  28. // // 否则返回一个pending中的promise
  29. // return new Promise(() => { })
  30. // }
  31. // }
  32. return data || {}
  33. }, (response) => { /* 对响应错误做点什么 (statusCode !== 200)*/
  34. return Promise.reject(response)
  35. })
  36. }