http.interceptor.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. const install = (Vue, vm) => {
  2. Vue.prototype.$u.http.setConfig({
  3. baseUrl: Vue.prototype.$url, // 请求的本域名
  4. loadingText: '加载中...',
  5. loadingTime: 800,
  6. showLoading: true, // 是否显示请求中的loading
  7. loadingMask: true, // 展示loading的时候,是否给一个透明的蒙层,防止触摸穿透
  8. originalData: true, // 是否在拦截器中返回服务端的原始数据
  9. // 配置请求头信息
  10. header: {},
  11. });
  12. // 请求拦截部分,如配置,每次请求前都会执行
  13. Vue.prototype.$u.http.interceptor.request = (config) => {
  14. // 引用token
  15. // 方式一,存放在vuex的token,假设使用了uView封装的vuex方式
  16. // 见:https://uviewui.com/components/globalVariable.html
  17. // config.header.token = vm.token;
  18. // 方式二,如果没有使用uView封装的vuex方法,那么需要使用$store.state获取
  19. // config.header.token = vm.$store.state.token;
  20. // 方式三,如果token放在了globalData,通过getApp().globalData获取
  21. // config.header.token = getApp().globalData.username;
  22. // 方式四,如果token放在了Storage本地存储中,拦截是每次请求都执行的
  23. // 所以哪怕您重新登录修改了Storage,下一次的请求将会是最新值
  24. const token = uni.getStorageSync('token');
  25. config.header.token = token;
  26. // 可以对某个url进行特别处理,此url参数为this.$u.get(url)中的url值
  27. // if(config.url == '/user/login') config.header.noToken = true;
  28. // 最后需要将config进行return
  29. return config;
  30. // 如果return一个false值,则会取消本次请求
  31. // if(config.url == '/user/rest') return false; // 取消某次请求
  32. }
  33. // 响应拦截,如配置,每次请求结束都会执行本方法
  34. Vue.prototype.$u.http.interceptor.response = (res) => {
  35. if (res.statusCode == 200) {
  36. // res为服务端返回值,可能有code,result等字段
  37. // 这里对res.result进行返回,将会在this.$u.post(url).then(res => {})的then回调中的res的到
  38. // 如果配置了originalData为true,请留意这里的返回值
  39. return res.data;
  40. } else {
  41. // 假设201为token失效,这里跳转登录
  42. if (res.statusCode == 500) {
  43. var title = ''
  44. var title1 = ''
  45. var html = res.data
  46. var start = html.indexOf('<h1>')
  47. var end = html.indexOf('</h1>')
  48. title = html.substring(start + 4, end)
  49. var start1 = html.indexOf('</abbr> in <a class="toggle" title=')
  50. var end1 = html.indexOf('</a></h2>')
  51. title1 = html.substring(start1 + 35, end1)
  52. if (title1 && title) {
  53. uni.showModal({
  54. title: `网络错误:${res.statusCode}`,
  55. content: `位置:${title1}\r\n 标题:${title}`
  56. })
  57. } else {
  58. uni.showModal({
  59. title: `网络错误:${res.statusCode}`,
  60. })
  61. }
  62. } else {
  63. // uni.showModal({
  64. // content: `未知错误:${res.statusCode}`
  65. // })
  66. }
  67. return false;
  68. }
  69. }
  70. }
  71. export default {
  72. install
  73. }