requestInterceptors.js 565 B

1234567891011121314151617181920
  1. /**
  2. * 请求拦截
  3. * @param {Object} http
  4. */
  5. module.exports = vm => {
  6. uni.$u.http.interceptors.request.use(
  7. config => {
  8. // 可使用async await 做异步操作
  9. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  10. config.data = config.data || {}
  11. if (vm.$store.getters.hasLogin) {
  12. config.header.Authorization = 'Bearer ' + vm.$store.getters.accessToken
  13. }
  14. return config
  15. },
  16. (
  17. config // 可使用async await 做异步操作
  18. ) => Promise.reject(config)
  19. )
  20. }