request.js 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import config from '@/common/config.js'
  2. // 此vm参数为页面的实例,可以通过它引用vuex中的变量
  3. module.exports = (vm) => {
  4. const isDev = process.env.NODE_ENV === 'development'
  5. const appTokenKey = config.const.access_token
  6. // 根据运行环境判断获取baseUrl地址
  7. let base_url = 'https://ldb-airport.hz-hanghui.com:9100/ldb-pass-app/'
  8. // if(isDev){
  9. // // 开发环境
  10. // base_url = 'http://192.168.11.17:13022/ldb-pass-app/app/safeThing/'
  11. // // base_url = 'http://tsmgdn.natappfree.cc/ldb-pass-app/app/safeThing/'
  12. // }else if(process.env.NODE_ENV === 'production'){
  13. // // 生产环境
  14. // base_url = 'https://ldb-airport.hz-hanghui.com:9100/ldb-pass-app/app/safeThing/'
  15. // }
  16. // 初始化请求配置
  17. uni.$u.http.setConfig((config) => {
  18. /* config 为默认全局配置*/
  19. config.baseURL = base_url
  20. config.method = 'POST'
  21. // 设置为json,返回后会对数据进行一次JSON.parse()
  22. config.dataType = 'json'
  23. // #ifdef H5 || APP-PLUS || MP-ALIPAY || MP-WEIXIN
  24. config.timeout = 60000
  25. // #endif
  26. // config.showLoading = true, // 是否显示请求中的loading
  27. // config.loadingText = '努力加载中~', // 请求loading中的文字提示
  28. // config.loadingTime = 800, // 在此时间内,请求还没回来的话,就显示加载中动画,单位ms
  29. // config.originalData = false, // 是否在拦截器中返回服务端的原始数据
  30. // config.loadingMask = true, // 展示loading的时候,是否给一个透明的蒙层,防止触摸穿透
  31. // 配置请求头信息
  32. // config.header = {
  33. // 'content-type': 'application/json;charset=UTF-8'
  34. // }
  35. return config
  36. })
  37. // 请求拦截
  38. uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
  39. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  40. config.data = config.data || {}
  41. if(isDev) console.info('request--->config', config)
  42. if(config?.custom?.type === 'json') {
  43. config.header['Content-Type'] = 'application/json'
  44. } else {
  45. config.header['Content-Type'] = 'application/x-www-form-urlencoded'
  46. }
  47. const appToken = uni.getStorageSync(appTokenKey)
  48. if (appToken) {
  49. // 可以在此通过vm引用vuex中的变量,具体值在vm.$store.state中
  50. config.header[appTokenKey] = appToken
  51. }
  52. if (config?.custom?.loadingText) {
  53. uni.showLoading({
  54. title: config.custom.loadingText
  55. })
  56. }
  57. return config
  58. }, config => { // 可使用async await 做异步操作
  59. return Promise.reject(config)
  60. })
  61. // 响应拦截
  62. uni.$u.http.interceptors.response.use((response) => {
  63. /* 对响应成功做点什么 可使用async await 做异步操作*/
  64. const data = response.data
  65. if(isDev) console.info('response:data-->', data)
  66. if (response.config?.custom?.loadingText) {
  67. uni.hideLoading()
  68. }
  69. if(data.code === 200) {
  70. return data
  71. } else {
  72. if (response.config?.custom?.hasMsg) {
  73. uni.$u.toast(data.msg)
  74. }
  75. if(data.code === 10001) {
  76. // 清除缓存数据
  77. uni.removeStorageSync('app-userId')
  78. uni.removeStorageSync(appTokenKey)
  79. // 重新登录
  80. uni.$u.throttle(() => {
  81. uni.$u.sleep(500).then(() => {
  82. vm.$u.route(config.route.login)
  83. })
  84. }, 2000)
  85. }
  86. return Promise.reject(data)
  87. }
  88. }, (response) => {
  89. // 对响应错误做点什么 (statusCode !== 200)
  90. return Promise.reject(response)
  91. })
  92. }