91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
import { CustomRequestOptions } from '@/interceptors/request'
|
||
import { staticBaseUrl, baseUrl } from '@/utils/index'
|
||
|
||
export const http = <T>(options: CustomRequestOptions) => {
|
||
// 1. 返回 Promise 对象
|
||
return new Promise<IResData<T>>((resolve, reject) => {
|
||
if (options.query?.staticType === 'static') {
|
||
options.url = `${staticBaseUrl}${options.url}`
|
||
} else if (options.query?.hasPrefix) {
|
||
} else {
|
||
options.url = `${baseUrl}${options.url}`
|
||
}
|
||
// options.url = `${options.query?.staticType === 'static' ? staticBaseUrl : baseUrl}${options.url}`
|
||
uni.request({
|
||
...options,
|
||
dataType: 'json',
|
||
// #ifndef MP-WEIXIN
|
||
responseType: 'json',
|
||
// #endif
|
||
// 响应成功
|
||
success(res) {
|
||
// 状态码 2xx,参考 axios 的设计
|
||
if ((res.data as IResData<T>).code === 401) {
|
||
uni.navigateTo({ url: '/login-sub/index' })
|
||
reject(res)
|
||
} else if (res.statusCode < 300 && res.statusCode >= 200) {
|
||
// 2.1 提取核心数据 res.data
|
||
resolve(res.data as IResData<T>)
|
||
} else if (res.statusCode === 401) {
|
||
// 401错误 -> 清理用户信息,跳转到登录页
|
||
uni.navigateTo({ url: '/login-sub/index' })
|
||
reject(res)
|
||
} else {
|
||
// 其他错误 -> 根据后端错误信息轻提示
|
||
!options.hideErrorToast &&
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: (res.data as IResData<T>).message || '请求错误',
|
||
})
|
||
reject(res)
|
||
}
|
||
},
|
||
// 响应失败
|
||
fail(err) {
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: '网络错误,换个网络试试',
|
||
})
|
||
reject(err)
|
||
},
|
||
})
|
||
})
|
||
}
|
||
|
||
/**
|
||
* GET 请求
|
||
* @param url 后台地址
|
||
* @param query 请求query参数
|
||
* @returns
|
||
*/
|
||
export const httpGet = <T>(url: string, query?: Record<string, any>) => {
|
||
return http<T>({
|
||
url,
|
||
query,
|
||
method: 'GET',
|
||
})
|
||
}
|
||
|
||
/**
|
||
* POST 请求
|
||
* @param url 后台地址
|
||
* @param data 请求body参数
|
||
* @param query 请求query参数,post请求也支持query,很多微信接口都需要
|
||
* @returns
|
||
*/
|
||
export const httpPost = <T>(
|
||
url: string,
|
||
data?: Record<string, any>,
|
||
query?: Record<string, any>,
|
||
) => {
|
||
return http<T>({
|
||
url,
|
||
query,
|
||
data,
|
||
method: 'POST',
|
||
})
|
||
}
|
||
|
||
http.get = httpGet
|
||
http.post = httpPost
|