洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.2 KiB

3 months ago
3 months ago
3 months ago
6 months ago
3 months ago
6 months ago
  1. import { H5_API, WX_API,httpPrefix } from '@/config/site.config.js';
  2. import { refreshToken } from './utils'
  3. import md5 from 'js-md5'
  4. let secretKey = '22d90e09d1374f0f9e4accd07d333e55'
  5. // 此vm参数为页面的实例,可以通过它引用vuex中的变量
  6. module.exports = (vm) => {
  7. // 初始化请求配置
  8. uni.$u.http.setConfig((config) => {
  9. let prefix = config.prefix?config.prefix: httpPrefix
  10. /* config 为默认全局配置*/
  11. config.baseURL = H5_API+ WX_API + prefix; /* 根域名 */
  12. console.log(config.baseURL)
  13. // config.header['content-type'] = 'application/x-www-form-urlencoded; charset=UTF-8'
  14. // config.header['tenant-id'] = '1704459882232553474'
  15. // config.header['tenant-id'] = vm.$store.state.user.vuex_userInfo.tenantId || '1704459882232553474'
  16. return config
  17. })
  18. // 请求拦截
  19. uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
  20. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  21. config.data = config.data || {}
  22. // 根据custom参数中配置的是否需要token,添加对应的请求头
  23. config.data['timestamp'] = Date.now()
  24. let jsonString = JSON.stringify(config.data)
  25. let strSecretKey = jsonString + secretKey
  26. let hash = md5(strSecretKey)
  27. config.header['Signature'] = hash
  28. config.data = jsonString
  29. let token = vm.$store.state.user.vuex_loginInfo.accessToken
  30. if(token) {
  31. config.header.Authorization = 'Bearer ' + token
  32. }
  33. let noToken = config.custom?.noToken
  34. if(noToken&&config.header.Authorization) {
  35. delete config.header.Authorization
  36. }
  37. console.log('config')
  38. console.log(config)
  39. return config
  40. }, config => { // 可使用async await 做异步操作
  41. return Promise.reject(config)
  42. })
  43. // 响应拦截
  44. uni.$u.http.interceptors.response.use(async (response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
  45. const data = response.data
  46. // console.log('请求结果')
  47. // console.log(data)
  48. if(data.code==406&&response.config.url!='member/auth/refresh-token'&&response.config.url!=='member/auth/logout') {
  49. await refreshToken()
  50. let obj = response.config
  51. let method = obj.method.toLowerCase()
  52. if(method=='get') {
  53. return uni.$u.http[method](obj.url, {params: obj.params})
  54. }else{
  55. return uni.$u.http[method](obj.url, obj.data )
  56. }
  57. }
  58. if(data.code==401) {
  59. console.log('报401的接口')
  60. console.log(response.config.url)
  61. return uni.$u.debounce(vm.$store.commit('goLogin'), 1500)
  62. }
  63. // 自定义参数
  64. const custom = response.config?.custom
  65. if (data.code !== 0&&data.code!=406&&data.code!='200240213') {
  66. console.log('不正常的code')
  67. console.log(data)
  68. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  69. if (custom.toast !== false) {
  70. uni.$u.toast(data.msg)
  71. }
  72. // 如果需要catch返回,则进行reject
  73. if (custom?.catch) {
  74. return Promise.reject(data)
  75. } else {
  76. // 否则返回一个pending中的promise,请求不会进入catch中
  77. return new Promise(() => { })
  78. }
  79. }
  80. return data === undefined ? {} : data
  81. }, (response) => {
  82. // 对响应错误做点什么 (statusCode !== 200)
  83. return Promise.reject(response)
  84. })
  85. }