http.interceptor.js 2.5 KB

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