http.interceptor.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // 此vm参数为页面的实例,可以通过它引用vuex中的变量
  2. module.exports = (vm) => {
  3. // 初始化请求配置
  4. uni.$u.http.setConfig((config) => {
  5. /* config 为默认全局配置*/
  6. // config.baseURL = "https://cbec.hdlkeji.com"; /* 根域名 */
  7. config.baseURL = "https://api.qbhcn.com"; /* 根域名 */
  8. // config.baseURL = "https://cbec-test.hdlkeji.com"; /* 根域名,测试地址 */
  9. return config;
  10. });
  11. // 请求拦截
  12. uni.$u.http.interceptors.request.use(
  13. (config) => {
  14. // 可使用async await 做异步操作
  15. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  16. config.data = config.data || {};
  17. // 根据custom参数中配置的是否需要token,添加对应的请求头
  18. // if(config?.custom?.auth) {
  19. // 可以在此通过vm引用vuex中的变量,具体值在vm.$store.state中
  20. const token = uni.getStorageSync("token");
  21. config.header.Authorization = "Bearer" + " " + token;
  22. // }
  23. return config;
  24. },
  25. (config) => {
  26. // 可使用async await 做异步操作
  27. return Promise.reject(config);
  28. }
  29. );
  30. // 响应拦截
  31. uni.$u.http.interceptors.response.use(
  32. (res) => {
  33. /* 对响应成功做点什么 可使用async await 做异步操作*/
  34. const data = res.data;
  35. // 自定义参数
  36. const custom = res.config?.custom;
  37. if (data.code !== 10000 && data.code !== 10011) {
  38. if (data.code == 10001) {
  39. uni.showModal({
  40. title: "提示",
  41. content: "未登录,请先登录",
  42. success: function (res) {
  43. if (res.confirm) {
  44. console.log("用户点击确定");
  45. uni.reLaunch({
  46. url: "/pages/login/login",
  47. });
  48. } else if (res.cancel) {
  49. console.log("用户点击取消");
  50. }
  51. },
  52. });
  53. }
  54. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  55. else if (custom.toast !== false) {
  56. uni.$u.toast(data.message);
  57. }
  58. // 如果需要catch返回,则进行reject
  59. if (custom?.catch) {
  60. return Promise.reject(data);
  61. } else {
  62. // 否则返回一个pending中的promise,请求不会进入catch中
  63. return new Promise(() => {});
  64. }
  65. }
  66. return data.data === undefined ? {} : data.data;
  67. },
  68. (res) => {
  69. // 对响应错误做点什么 (statusCode !== 200)
  70. return Promise.reject(res);
  71. }
  72. );
  73. };