request.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import Vue from 'vue'
  2. import axios from 'axios'
  3. import router from '../router'
  4. import _ from 'lodash'
  5. import { Toast, Notify } from 'vant'
  6. import { getCookieValue } from '../utils'
  7. import { platform } from '../utils/platform'
  8. const host = window.location.host
  9. const domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
  10. const request = axios.create({
  11. withCredentials: true,
  12. baseURL: process.env.API_DOMAIN,
  13. timeout: 50000,
  14. headers: {
  15. 'Content-Type': 'application/json;charset=UTF-8'
  16. }
  17. })
  18. let tingbangSource = 'h5'
  19. if (platform.isAlipay) {
  20. tingbangSource = 'alipay'
  21. } else if (platform.isWeixin) {
  22. tingbangSource = 'wechat'
  23. }
  24. let loading = null
  25. // 当前正在请求的数量
  26. let needLoadingRequestCount = 0
  27. // 显示loading
  28. function showLoading () {
  29. if (needLoadingRequestCount === 0 && !loading) {
  30. loading = Toast.loading({
  31. message: '拼命获取中',
  32. forbidClick: true,
  33. duration: 0
  34. })
  35. }
  36. needLoadingRequestCount++
  37. }
  38. // 隐藏loading
  39. function hideLoading () {
  40. needLoadingRequestCount--
  41. needLoadingRequestCount = Math.max(needLoadingRequestCount, 0) // 做个保护
  42. if (needLoadingRequestCount === 0) {
  43. // 关闭loading
  44. toHideLoading()
  45. }
  46. }
  47. // 防抖:将 300ms 间隔内的关闭 loading 便合并为一次。防止连续请求时, loading闪烁的问题。
  48. function toHideLoading () {
  49. _.debounce(() => {
  50. loading.clear()
  51. loading = null
  52. }, 300)
  53. }
  54. // Add a request interceptor
  55. request.interceptors.request.use(request => {
  56. const requestUrl = request.url
  57. request.headers.token = getCookieValue('afhousetoken')
  58. request.headers.tingbangSource = tingbangSource
  59. if (platform.isWeixin) {
  60. request.headers.wechatToken = getCookieValue('afhousewechatToken')
  61. }
  62. request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
  63. // 因为微信开发者工具重复授权,本地开发时写死
  64. if (/^(0|192|10|localhost)|(test$)/.test(domain)) {
  65. // request.url += '&owner_open_id=0c540a8d284b38f84d2f8ad262ab5d2c'
  66. request.headers.wechatToken = '0c540a8d284b38f84d2f8ad262ab5d2c'
  67. }
  68. // 判断当前请求是否设置了不显示Loading
  69. if (request.showLoading) {
  70. showLoading()
  71. }
  72. if (/post/ig.test(request.method)) {
  73. request.headers = {
  74. ...request.headers,
  75. 'Content-Type': 'application/x-www-form-urlencoded'
  76. }
  77. }
  78. return request
  79. }, error => {
  80. // 判断当前请求是否设置了不显示Loading
  81. if (loading) {
  82. hideLoading()
  83. }
  84. Notify({
  85. type: 'warning',
  86. message: '请求超时'
  87. })
  88. // Do something with request error
  89. return Promise.reject(error)
  90. })
  91. // Add a response interceptor
  92. request.interceptors.response.use(response => {
  93. // Do something with response data
  94. const { code, url } = response.data
  95. if (loading) {
  96. hideLoading()
  97. }
  98. if (code === 301 && url) {
  99. Vue.cookie.delete('afhousewechatToken')
  100. location.replace(url)
  101. } else if (code === 403) {
  102. router.replace({
  103. path: '/login',
  104. query: {
  105. nextUrl: router.currentRoute.fullPath
  106. }
  107. })
  108. }
  109. return response.data
  110. }, (error) => {
  111. if (loading) {
  112. hideLoading()
  113. }
  114. Notify({
  115. type: 'danger',
  116. message: '数据获取失败!'
  117. })
  118. // Do something with response error
  119. return Promise.reject(error)
  120. })
  121. export default request