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.
YX-SCM/yunxi-ui-app/utils/request/requestInterceptors.js

21 lines
565 B

1 year ago
/**
* 请求拦截
* @param {Object} http
*/
module.exports = vm => {
uni.$u.http.interceptors.request.use(
config => {
// 可使用async await 做异步操作
// 初始化请求拦截器时会执行此方法此时data为undefined赋予默认{}
config.data = config.data || {}
if (vm.$store.getters.hasLogin) {
config.header.Authorization = 'Bearer ' + vm.$store.getters.accessToken
}
return config
},
(
config // 可使用async await 做异步操作
) => Promise.reject(config)
)
}