FlowPacs/yudao-ui-app/utils/request/requestInterceptors.js

21 lines
565 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) {
config.header.Authorization = 'Bearer ' + vm.$store.getters.accessToken
}
return config
},
(
config // 可使用async await 做异步操作
) => Promise.reject(config)
)
}