vue-pro/yudao-ui-app/util/request/requestInterceptors.js

21 lines
559 B
JavaScript
Raw Normal View History

/**
* 请求拦截
* @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) {
2022-05-02 19:37:17 +08:00
config.header.authorization = 'Bearer ' + vm.$store.getters.token
}
return config
},
(
config // 可使用async await 做异步操作
) => Promise.reject(config)
)
}