http.interceptor.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 = uni.getStorageSync("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 && data.code !== 10011) {
  36. if (data.code == 10001) {
  37. uni.showModal({
  38. title: '提示',
  39. content: '未登录,请先登录',
  40. success: function(res) {
  41. if (res.confirm) {
  42. console.log('用户点击确定');
  43. uni.reLaunch({
  44. url:'/pages/login/login'
  45. })
  46. } else if (res.cancel) {
  47. console.log('用户点击取消');
  48. }
  49. }
  50. });
  51. }
  52. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  53. else if (custom.toast !== false) {
  54. uni.$u.toast(data.message);
  55. }
  56. // 如果需要catch返回,则进行reject
  57. if (custom?.catch) {
  58. return Promise.reject(data);
  59. } else {
  60. // 否则返回一个pending中的promise,请求不会进入catch中
  61. return new Promise(() => {});
  62. }
  63. }
  64. return data.data === undefined ? {} : data.data;
  65. },
  66. (res) => {
  67. // 对响应错误做点什么 (statusCode !== 200)
  68. return Promise.reject(res);
  69. }
  70. );
  71. };