http.interceptor.js 1.9 KB

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