Files
tuniao-ui/util/request/requestInterceptors.js
7small7 f710c14879 update
2023-07-08 20:44:19 +08:00

15 lines
536 B
JavaScript
Raw Permalink 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.$tn.http.interceptors.request.use((config) => { // 可以使用async await 做异步操作
// 初始化请求拦截器时会执行此方法此时data为undefined默认赋予{}
config.data = config.data || {}
// 可以在此通过vm引用vuex中的变量具体值在vm.vuex_[name]中
// console.log(vm.vuex_user);
return config
}, (config) => { // 可以使用async await 做异步操作
Promise.reject(config)
})
}