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

21 lines
565 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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