加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
uhttp.js 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
孙颖洲 提交于 2020-07-01 14:36 . 66666
function needLogin() {
uni.showModal({
title: '提示',
content: '需要登录才能进行操作?',
success: res => {
if (res.confirm) {
uni.navigateTo({
url: '/pages/account/main',
animationType: 'slide-in-right',
animationDuration: 300
})
} else if (res.cancel) {
uni.navigateBack()
}
}
})
}
const install = (Vue, vm) => {
// 全局配置
Vue.prototype.$u.http.setConfig({
baseUrl: 'https://www.supercloudvip.com/api',
showLoading: false,
loadingMask: false,
originalData: true
});
// 请求拦截
Vue.prototype.$u.http.interceptor.request = (config) => {
let token = vm.$store.state.token
if (token) {
config.header.Authorization = 'Bearer ' + token
} else {
config.header.Authorization = ''
}
return config;
}
// 响应拦截
Vue.prototype.$u.http.interceptor.response = (res) => {
if (res.data.success) {
return res
} else {
if (vm.$store.state.token) {
if (res.statusCode == 401) {
needLogin();
} else {
uni.showToast({
title: '操作频繁或者网络开小差了!',
icon: 'none'
})
}
} else {
needLogin();
}
console.log('fail', res)
return res
}
}
// 结束
}
export default {
install
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化