http.interceptor.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // common/http.interceptor.js
  2. import url from "./url.js"
  3. // console.log(url);
  4. // 这里的Vue为Vue对象(非创建出来的实例),vm为main.js中“Vue.use(httpInterceptor, app)”这一句的第二个参数,
  5. // 为一个Vue的实例,也即每个页面的"this"
  6. // 如果需要了解这个install方法是什么,请移步:https://uviewui.com/components/vueUse.html
  7. const install = (Vue, vm) => {
  8. // 此为自定义配置参数,具体参数见上方说明
  9. Vue.prototype.$u.http.setConfig({
  10. baseUrl: url,
  11. loadingText: '努力加载中~',
  12. loadingTime: 800,
  13. // 设置自定义头部content-type
  14. // header: {
  15. // 'content-type': 'application/x-www-form-urlencoded'
  16. // }
  17. // ......
  18. });
  19. // 请求拦截部分,如配置,每次请求前都会执行
  20. Vue.prototype.$u.http.interceptor.request = (config) => {
  21. // 引用token
  22. // 方式一,存放在vuex的token,假设使用了uView封装的vuex方式
  23. // 见:https://uviewui.com/components/globalVariable.html
  24. // config.header.token = vm.token;
  25. // 方式二,如果没有使用uView封装的vuex方法,那么需要使用$store.state获取
  26. // config.header.token = vm.$store.state.token;
  27. // 方式三,如果token放在了globalData,通过getApp().globalData获取
  28. // config.header.token = getApp().globalData.username;
  29. // 方式四,如果token放在了Storage本地存储中,拦截是每次请求都执行的
  30. // 所以哪怕您重新登录修改了Storage,下一次的请求将会是最新值
  31. const token = uni.getStorageSync('token');
  32. // console.log(config.data);
  33. config.header.Authorization = token;
  34. // 可以对某个url进行特别处理,此url参数为this.$u.get(url)中的url值
  35. // if (config.url == '/user/login') config.header.noToken = true;
  36. // 最后需要将config进行return
  37. return config;
  38. // 如果return一个false值,则会取消本次请求
  39. // if(config.url == '/user/rest') return false; // 取消某次请求
  40. }
  41. }
  42. export default {
  43. install
  44. }