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

21 lines
565 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 请求拦截
* @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)
)
}