mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
perf: httpRequest 优化
This commit is contained in:
parent
b1ec2157d7
commit
d6b71321b5
@ -9,7 +9,7 @@ const REFRESH_TOKEN = '/refresh/token';
|
||||
* @param params
|
||||
*/
|
||||
export function login(params: LoginParams) {
|
||||
return request.post<API<LoginModel>>(LOGIN, params, {
|
||||
return request.post<LoginModel>(LOGIN, params, {
|
||||
custom: {
|
||||
auth: false,
|
||||
},
|
||||
@ -20,12 +20,12 @@ export function login(params: LoginParams) {
|
||||
* 登出
|
||||
*/
|
||||
export function logout() {
|
||||
return request.post<API>(LOGIN_OUT, {});
|
||||
return request.post(LOGIN_OUT, {});
|
||||
}
|
||||
|
||||
/**
|
||||
* 刷新token
|
||||
*/
|
||||
export function refreshToken() {
|
||||
return request.post<API<LoginModel>>(REFRESH_TOKEN, {});
|
||||
return request.post<LoginModel>(REFRESH_TOKEN, {});
|
||||
}
|
||||
|
@ -1,6 +1,8 @@
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
interface UserState {}
|
||||
interface UserState {
|
||||
id?: string | number;
|
||||
}
|
||||
|
||||
export const useUserStore = defineStore({
|
||||
id: 'user',
|
||||
|
184
src/types/http.d.ts
vendored
184
src/types/http.d.ts
vendored
@ -1,184 +0,0 @@
|
||||
type AnyObject = Record<string | number | symbol, any>;
|
||||
export type HttpResponse<T = any> =
|
||||
| HttpSuccess<T>
|
||||
| HttpError<T>
|
||||
| HttpDownloadResponse
|
||||
| HttpUploadResponse<T>;
|
||||
type HttpPromise<T> = Promise<HttpResponse<T>>;
|
||||
type Tasks = UniApp.RequestTask | UniApp.UploadTask | UniApp.DownloadTask;
|
||||
type Method =
|
||||
| 'GET'
|
||||
| 'POST'
|
||||
| 'PUT'
|
||||
| 'DELETE'
|
||||
| 'CONNECT'
|
||||
| 'HEAD'
|
||||
| 'OPTIONS'
|
||||
| 'TRACE'
|
||||
| 'UPLOAD'
|
||||
| 'DOWNLOAD';
|
||||
export interface RequestTask {
|
||||
abort: () => void;
|
||||
offHeadersReceived: () => void;
|
||||
onHeadersReceived: () => void;
|
||||
}
|
||||
export interface CustomConfig {
|
||||
auth?: boolean;
|
||||
loading?: boolean;
|
||||
}
|
||||
|
||||
export interface HttpRequestConfig<T = Tasks> extends Record<string, any> {
|
||||
/** 请求基地址 */
|
||||
baseURL?: string;
|
||||
/** 请求服务器接口地址 */
|
||||
url?: string;
|
||||
|
||||
/** 请求查询参数,自动拼接为查询字符串 */
|
||||
params?: AnyObject;
|
||||
/** 请求体参数 */
|
||||
data?: AnyObject;
|
||||
|
||||
/** 文件对应的 key */
|
||||
name?: string;
|
||||
/** HTTP 请求中其他额外的 form data */
|
||||
formData?: AnyObject;
|
||||
/** 要上传文件资源的路径。 */
|
||||
filePath?: string;
|
||||
/** 需要上传的文件列表。使用 files 时,filePath 和 name 不生效,App、H5( 2.6.15+) */
|
||||
files?: Array<{
|
||||
name?: string;
|
||||
file?: File;
|
||||
uri: string;
|
||||
}>;
|
||||
/** 要上传的文件对象,仅H5(2.6.15+)支持 */
|
||||
file?: File;
|
||||
|
||||
/** 文要上传的件类型, 支付宝小程序,且必填 **/
|
||||
fileType?: string;
|
||||
/** 请求头信息 */
|
||||
header?: AnyObject;
|
||||
/** 请求方式 */
|
||||
method?: Method;
|
||||
/** 如果设为 json,会尝试对返回的数据做一次 JSON.parse */
|
||||
dataType?: string;
|
||||
/** 设置响应的数据类型,支付宝小程序不支持 */
|
||||
responseType?: 'text' | 'arraybuffer';
|
||||
/** 自定义参数 */
|
||||
custom?: CustomConfig;
|
||||
/** 超时时间,仅微信小程序(2.10.0)、支付宝小程序支持 */
|
||||
timeout?: number;
|
||||
/** DNS解析时优先使用ipv4,仅 App-Android 支持 (HBuilderX 2.8.0+) */
|
||||
firstIpv4?: boolean;
|
||||
/** 验证 ssl 证书 仅5+App安卓端支持(HBuilderX 2.3.3+) */
|
||||
sslVerify?: boolean;
|
||||
/** 跨域请求时是否携带凭证(cookies)仅H5支持(HBuilderX 2.6.15+) */
|
||||
withCredentials?: boolean;
|
||||
|
||||
/** 返回当前请求的task, options。请勿在此处修改options。 */
|
||||
getTask?: (task: T, options: HttpRequestConfig<T>) => void;
|
||||
/** 全局自定义验证器 */
|
||||
validateStatus?: (statusCode: number) => boolean | void;
|
||||
}
|
||||
export interface HttpSuccess<T = any> {
|
||||
config: HttpRequestConfig;
|
||||
statusCode: number;
|
||||
cookies: Array<string>;
|
||||
data: T;
|
||||
errMsg: string;
|
||||
header: AnyObject;
|
||||
}
|
||||
export interface HttpUploadResponse<T = any> {
|
||||
config: HttpRequestConfig;
|
||||
statusCode: number;
|
||||
data: T;
|
||||
errMsg: string;
|
||||
}
|
||||
export interface HttpDownloadResponse extends HttpSuccess {
|
||||
tempFilePath: string;
|
||||
}
|
||||
export interface HttpError<T = any> {
|
||||
config: HttpRequestConfig;
|
||||
statusCode?: number;
|
||||
cookies?: Array<string>;
|
||||
data?: T;
|
||||
errMsg: string;
|
||||
header?: AnyObject;
|
||||
}
|
||||
export interface HttpInterceptorManager<V, E = V> {
|
||||
use(
|
||||
onFulfilled?: (config: V) => Promise<V> | V,
|
||||
onRejected?: (config: E) => Promise<E> | E,
|
||||
): void;
|
||||
eject(id: number): void;
|
||||
forEach(h: any): void;
|
||||
}
|
||||
|
||||
export interface InterceptorsRequestConfig {
|
||||
config: HttpRequestConfig;
|
||||
}
|
||||
|
||||
export type InterceptorsRequest = HttpInterceptorManager<
|
||||
InterceptorsRequestConfig,
|
||||
InterceptorsRequestConfig
|
||||
>;
|
||||
export type InterceptorsResponse = HttpInterceptorManager<HttpSuccess, HttpError>;
|
||||
|
||||
export interface Interceptors {
|
||||
request: InterceptorsRequest;
|
||||
response: InterceptorsResponse;
|
||||
}
|
||||
|
||||
export abstract class HttpRequestAbstract {
|
||||
constructor(config?: Partial<HttpRequestConfig>);
|
||||
config: HttpRequestConfig;
|
||||
interceptors: Interceptors;
|
||||
middleware<T = any>(config: HttpRequestConfig): HttpPromise<T>;
|
||||
request<T = any>(config: HttpRequestConfig<UniApp.RequestTask>): HttpPromise<T>;
|
||||
get<T = any>(url: string, config?: HttpRequestConfig<UniApp.RequestTask>): HttpPromise<T>;
|
||||
upload<T = any>(url: string, config?: HttpRequestConfig<UniApp.UploadTask>): HttpPromise<T>;
|
||||
delete<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
head<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
post<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
put<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
connect<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
options<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
trace<T = any>(
|
||||
url: string,
|
||||
data?: AnyObject,
|
||||
config?: HttpRequestConfig<UniApp.RequestTask>,
|
||||
): HttpPromise<T>;
|
||||
|
||||
download(
|
||||
url: string,
|
||||
config?: HttpRequestConfig<UniApp.DownloadTask>,
|
||||
): Promise<HttpDownloadResponse>;
|
||||
|
||||
setConfig(onSend: (config: HttpRequestConfig) => HttpRequestConfig): void;
|
||||
}
|
||||
|
||||
declare class HttpRequest extends HttpRequestAbstract {}
|
||||
export default HttpRequest;
|
@ -1,6 +1,5 @@
|
||||
import Request from 'luch-request';
|
||||
import { assign } from 'lodash-es';
|
||||
import { HttpSuccess } from '@/types/http';
|
||||
import { Toast } from '@/utils/uniapi/prompt';
|
||||
import { getEnvValue } from '@/utils/env';
|
||||
import { useAuthStore } from '@/state/modules/auth';
|
||||
@ -50,7 +49,7 @@ request.interceptors.request.use(
|
||||
* 响应拦截器
|
||||
*/
|
||||
request.interceptors.response.use(
|
||||
async (response: HttpSuccess<API>) => {
|
||||
async (response) => {
|
||||
const { data: resData } = response;
|
||||
const { code, message } = resData;
|
||||
if (code === ResultEnum.SUCCESS) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user