2024-03-27 17:20:05 +08:00
|
|
|
/* eslint-disable no-param-reassign */
|
|
|
|
import qs from 'qs'
|
|
|
|
import { useUserStore } from '@/store'
|
2024-04-17 15:32:15 +08:00
|
|
|
import { platform } from '@/utils/platform'
|
2024-03-27 17:20:05 +08:00
|
|
|
|
|
|
|
export type CustomRequestOptions = UniApp.RequestOptions & {
|
|
|
|
query?: Record<string, any>
|
2024-04-17 15:32:15 +08:00
|
|
|
/** 出错时是否隐藏错误提示 */
|
|
|
|
hideErrorToast?: boolean
|
2024-03-27 17:20:05 +08:00
|
|
|
} & IUniUploadFileOptions // 添加uni.uploadFile参数类型
|
|
|
|
|
2024-04-17 15:32:15 +08:00
|
|
|
// 请求基准地址
|
|
|
|
const baseUrl = import.meta.env.VITE_SERVER_BASEURL
|
2024-03-27 17:20:05 +08:00
|
|
|
|
|
|
|
// 拦截器配置
|
|
|
|
const httpInterceptor = {
|
|
|
|
// 拦截前触发
|
|
|
|
invoke(options: CustomRequestOptions) {
|
|
|
|
// 接口请求支持通过 query 参数配置 queryString
|
|
|
|
if (options.query) {
|
|
|
|
const queryStr = qs.stringify(options.query)
|
|
|
|
if (options.url.includes('?')) {
|
|
|
|
options.url += `&${queryStr}`
|
|
|
|
} else {
|
|
|
|
options.url += `?${queryStr}`
|
|
|
|
}
|
|
|
|
}
|
2024-04-17 15:32:15 +08:00
|
|
|
// 非 http 开头需拼接地址
|
2024-03-27 17:20:05 +08:00
|
|
|
if (!options.url.startsWith('http')) {
|
2024-05-18 17:24:21 +08:00
|
|
|
// #ifdef H5
|
|
|
|
console.log(__VITE_APP_PROXY__)
|
|
|
|
if (JSON.parse(__VITE_APP_PROXY__)) {
|
|
|
|
// 啥都不需要做
|
|
|
|
} else {
|
|
|
|
options.url = baseUrl + options.url
|
|
|
|
}
|
|
|
|
// #endif
|
|
|
|
// 非H5正常拼接
|
|
|
|
// #ifndef H5
|
2024-04-17 15:32:15 +08:00
|
|
|
options.url = baseUrl + options.url
|
2024-05-18 17:24:21 +08:00
|
|
|
// #endif
|
2024-04-17 15:32:15 +08:00
|
|
|
// TIPS: 如果需要对接多个后端服务,也可以在这里处理,拼接成所需要的地址
|
2024-03-27 17:20:05 +08:00
|
|
|
}
|
2024-04-17 15:32:15 +08:00
|
|
|
// 1. 请求超时
|
2024-03-27 17:20:05 +08:00
|
|
|
options.timeout = 10000 // 10s
|
2024-04-17 15:32:15 +08:00
|
|
|
// 2. (可选)添加小程序端请求头标识
|
2024-03-27 17:20:05 +08:00
|
|
|
options.header = {
|
2024-04-17 15:32:15 +08:00
|
|
|
platform, // 可选,与 uniapp 定义的平台一致,告诉后台来源
|
2024-03-27 17:20:05 +08:00
|
|
|
...options.header,
|
|
|
|
}
|
2024-04-17 15:32:15 +08:00
|
|
|
// 3. 添加 token 请求头标识
|
2024-03-27 17:20:05 +08:00
|
|
|
const userStore = useUserStore()
|
|
|
|
const { token } = userStore.userInfo as unknown as IUserInfo
|
|
|
|
if (token) {
|
|
|
|
options.header.Authorization = `Bearer ${token}`
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export const requestInterceptor = {
|
|
|
|
install() {
|
|
|
|
// 拦截 request 请求
|
|
|
|
uni.addInterceptor('request', httpInterceptor)
|
|
|
|
// 拦截 uploadFile 文件上传
|
|
|
|
uni.addInterceptor('uploadFile', httpInterceptor)
|
|
|
|
},
|
|
|
|
}
|