http.interceptor.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // 此vm参数为页面的实例,可以通过它引用vuex中的变量
  2. module.exports = (vm) => {
  3. // 初始化请求配置
  4. uni.$u.http.setConfig((config) => {
  5. /* config 为默认全局配置*/
  6. config.baseURL = ''; /* 根域名 */
  7. return config
  8. })
  9. // 请求拦截
  10. uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
  11. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  12. config.data = config.data || {}
  13. // 根据custom参数中配置的是否需要token,添加对应的请求头
  14. if(config?.custom?.auth) {
  15. // 可以在此通过vm引用vuex中的变量,具体值在vm.$store.state中
  16. config.header.token = vm.$store.state.userInfo.token
  17. }
  18. return config
  19. }, config => { // 可使用async await 做异步操作
  20. return Promise.reject(config)
  21. })
  22. // 响应拦截
  23. uni.$u.http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
  24. const data = response.data
  25. // 自定义参数
  26. const custom = response.config?.custom
  27. if (data.code !== 200) {
  28. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  29. if (custom.toast !== false) {
  30. uni.$u.toast(data.message)
  31. }
  32. // 如果需要catch返回,则进行reject
  33. if (custom?.catch) {
  34. return Promise.reject(data)
  35. } else {
  36. // 否则返回一个pending中的promise,请求不会进入catch中
  37. return new Promise(() => { })
  38. }
  39. }
  40. return data.data === undefined ? {} : data.data
  41. }, (response) => {
  42. // 对响应错误做点什么 (statusCode !== 200)
  43. return Promise.reject(response)
  44. })
  45. }