diff --git a/mock/module/user.ts b/mock/module/user.ts index 3948711..3643d22 100644 --- a/mock/module/user.ts +++ b/mock/module/user.ts @@ -10,7 +10,7 @@ const userInfo = { userName: 'iamsee', realName: '管理员大人', avatar: 'https://z3.ax1x.com/2021/10/29/5jnWgf.jpg', - role: "user", + role: "super", }; const userRoutes = [ { diff --git a/src/config/service.ts b/src/config/service.ts index c0fea07..433c73d 100644 --- a/src/config/service.ts +++ b/src/config/service.ts @@ -1,5 +1,6 @@ /** 默认实例的Aixos配置 */ -export const DEFAULT_AXIOS_OPTIONS = { +import type { AxiosRequestConfig } from 'axios'; +export const DEFAULT_AXIOS_OPTIONS: AxiosRequestConfig = { // 请求超时时间,默认15秒 timeout: 15 * 1000, }; diff --git a/src/constants/business.ts b/src/constants/business.ts new file mode 100644 index 0000000..b04b98a --- /dev/null +++ b/src/constants/business.ts @@ -0,0 +1,5 @@ +/** 用户性别 */ +export const genderLabels: Record, string> = { + 0: '女', + 1: '男' +}; \ No newline at end of file diff --git a/src/constants/index.ts b/src/constants/index.ts new file mode 100644 index 0000000..c27ca25 --- /dev/null +++ b/src/constants/index.ts @@ -0,0 +1 @@ +export * from './business' \ No newline at end of file diff --git a/src/enum/common.ts b/src/enum/common.ts deleted file mode 100644 index 9afa064..0000000 --- a/src/enum/common.ts +++ /dev/null @@ -1,5 +0,0 @@ -export enum EnumContentType { - json = 'application/json', - formUrlencoded = 'application/x-www-form-urlencoded', - formData = 'multipart/form-data', -} diff --git a/src/enum/index.ts b/src/enum/index.ts deleted file mode 100644 index d0b9323..0000000 --- a/src/enum/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './common'; diff --git a/src/service/api/login.ts b/src/service/api/login.ts index 11db346..7bbc34a 100644 --- a/src/service/api/login.ts +++ b/src/service/api/login.ts @@ -4,15 +4,12 @@ interface Ilogin { userName: string; password: string; } -interface Itoken { - token: string; - refreshToken: string; -} + export function fetchLogin(params: Ilogin) { return mockRequest.post('/login', params); } export function fetchUpdateToken(params: any) { - return mockRequest.post('/updateToken', params); + return mockRequest.post('/updateToken', params); } export function fetchUserInfo() { return mockRequest.get('/getUserInfo'); diff --git a/src/service/api/test.ts b/src/service/api/test.ts index 3524c4a..319a5e9 100644 --- a/src/service/api/test.ts +++ b/src/service/api/test.ts @@ -1,28 +1,25 @@ import { request } from '../http'; import { mockRequest } from '../http'; -interface Itest { - data: string; -} /* get方法测试 */ -export function fetachGet() { - return request.get('/getAPI'); +export function fetachGet(params?:any) { + return request.get('/getAPI', { params }); } /* post方法测试 */ -export function fetachPost(params: Itest) { - return request.post('/postAPI', params); +export function fetachPost(data: any) { + return request.post('/postAPI', data); +} +/* formPost方法测试 */ +export function fetachFormPost(data: any) { + return request.formPost('/postAPI', data); } /* delete方法测试 */ export function fetachDelete() { return request.delete('/deleteAPI'); } /* put方法测试 */ -export function fetachPut(params: Itest) { - return request.put('/putAPI', params); -} -/* patch方法测试 */ -export function fetachPatch(params: Itest) { - return request.patch('/patchAPI', params); +export function fetachPut(data: any) { + return request.put('/putAPI', data); } /* 测试状态码500失败 */ diff --git a/src/service/http/instance.ts b/src/service/http/instance.ts index 7ad58fd..1678842 100644 --- a/src/service/http/instance.ts +++ b/src/service/http/instance.ts @@ -9,7 +9,7 @@ import { handleServiceResult, handleRefreshToken, } from './handle'; -import { transformRequestData } from './utils'; +import { transformRequestData, clearInvalidParameters } from './utils'; import { DEFAULT_AXIOS_OPTIONS, DEFAULT_BACKEND_OPTIONS } from '@/config'; @@ -36,16 +36,15 @@ export default class createAxiosInstance { async (config) => { const handleConfig = { ...config }; if (handleConfig.headers) { + // 清除无效字段 + handleConfig.data = clearInvalidParameters(handleConfig.data) // 数据格式转换 - // handleConfig.headers.setContentType('application/json'); - // const contentType = handleConfig.headers.get('Content-Type'); - - const contentType = 'application/json'; - handleConfig.data = await transformRequestData(handleConfig.data, contentType); - + const contentType = handleConfig.headers.getContentType() as unknown as UnionKey.ContentType + if (contentType) { + handleConfig.data = await transformRequestData(handleConfig.data, contentType); + } // 设置token - typeof handleConfig.headers.set === 'function' && - handleConfig.headers.set('Authorization', `Bearer ${local.get('token') || ''}`); + handleConfig.headers.setAuthorization(`Bearer ${local.get('token') || ''}`) } return handleConfig; }, diff --git a/src/service/http/request.ts b/src/service/http/request.ts index 0202f65..243f232 100644 --- a/src/service/http/request.ts +++ b/src/service/http/request.ts @@ -9,14 +9,14 @@ interface RequestParam { config?: AxiosRequestConfig; } -async function getRequestResponse(params: { +async function getRequestResponse(options: { instance: AxiosInstance; method: RequestMethod; url: string; data?: any; config?: AxiosRequestConfig; }) { - const { instance, method, url, data, config } = params; + const { instance, method, url, data, config } = options; let res: any; if (method === 'get' || method === 'delete') { @@ -74,12 +74,23 @@ export function createRequest(axiosConfig: AxiosRequestConfig, backendConfig?: S return asyncRequest({ url, method: 'post', data, config: config }); } + /** + * post请求-form参数形式 + * @param url - 请求地址 + * @param data - 请求的body的data + * @param config - axios配置 + */ + function formPost(url: string, data?: any, config: AxiosRequestConfig = {}) { + config.headers = { 'Content-Type': 'application/x-www-form-urlencoded' } + return asyncRequest({ url, method: 'post', data, config: config }); + } + /** * delete请求 * @param url - 请求地址 * @param config - axios配置 */ - function handleDelete(url: string, config?: AxiosRequestConfig) { + function handleDelete(url: string, params?: any, config?: AxiosRequestConfig) { return asyncRequest({ url, method: 'delete', config: config }); } @@ -93,21 +104,11 @@ export function createRequest(axiosConfig: AxiosRequestConfig, backendConfig?: S return asyncRequest({ url, method: 'put', data, config: config }); } - /** - * patch请求 - * @param url - 请求地址 - * @param data - 请求的body的data - * @param config - axios配置 - */ - function patch(url: string, data?: any, config?: AxiosRequestConfig) { - return asyncRequest({ url, method: 'patch', data, config: config }); - } - return { get, post, - delete: handleDelete, + formPost, put, - patch, + delete: handleDelete, }; } diff --git a/src/service/http/utils.ts b/src/service/http/utils.ts index eb966b4..b3d1410 100644 --- a/src/service/http/utils.ts +++ b/src/service/http/utils.ts @@ -1,6 +1,5 @@ import { ERROR_MSG_DURATION, ERROR_NO_TIP_STATUS } from '@/config'; import { isArray, isFile, isEmpty, isNullOrUnDef } from '@/utils'; -import { EnumContentType } from '@/enum'; import qs from 'qs'; export function showError(error: Service.RequestError) { @@ -16,17 +15,16 @@ export function showError(error: Service.RequestError) { * @param requestData - 请求数据 * @param contentType - 请求头的Content-Type */ -export async function transformRequestData(requestData: any, contentType?: string) { - // application/json类型不处理 +export async function transformRequestData(requestData: any, contentType?: UnionKey.ContentType) { + // application/json类型不处理,清除发送参数的无效字段 let data: any = clearInvalidParameters(requestData); - // let data = requestData; // form类型转换 - if (contentType === EnumContentType.formUrlencoded) { + if (contentType === 'application/x-www-form-urlencoded') { data = qs.stringify(data); } // form-data类型转换 - if (contentType === EnumContentType.formData) { + if (contentType === 'multipart/form-data') { data = await handleFormData(data); } @@ -40,8 +38,9 @@ async function handleFormData(data: Record) { entries.forEach(async ([key, value]) => { const isFileType = isFile(value) || (isArray(value) && value.length && isFile(value[0])); - if (isFileType) { - await transformFile(formData, key, value); + if (isFileType && isArray(value)) { + value.forEach((item) => formData.append(key, item)) + } else { formData.append(key, value); } @@ -50,31 +49,11 @@ async function handleFormData(data: Record) { return formData; } -/** - * 接口为上传文件的类型时数据转换 - * @param key - 文件的属性名 - * @param file - 单文件或多文件 - */ -async function transformFile(formData: FormData, key: string, file: File[] | File) { - if (isArray(file)) { - // 多文件 - await Promise.all( - (file as File[]).map((item) => { - formData.append(key, item); - return true; - }) - ); - } else { - // 单文件 - formData.append(key, file); - } -} - /** * 接口提交的参数去除无效字段 * @param requestData -接口提交的参数 */ -function clearInvalidParameters(requestData: Record) { +export function clearInvalidParameters(requestData: Record) { const result: Record = {}; for (const key in requestData) { if (isEmpty(requestData[key]) || isNullOrUnDef(requestData[key])) continue; diff --git a/src/store/modules/auth.ts b/src/store/modules/auth.ts index c9b9637..d50305a 100644 --- a/src/store/modules/auth.ts +++ b/src/store/modules/auth.ts @@ -52,7 +52,7 @@ export const useAuthStore = defineStore('auth-store', { }, /* 登录后的处理函数 */ - async handleAfterLogin(data: Auth.loginToken) { + async handleAfterLogin(data: ApiAuth.loginToken) { // 将token和userInfo保存下来 const catchSuccess = await this.catchUserInfo(data); @@ -85,7 +85,7 @@ export const useAuthStore = defineStore('auth-store', { }, /* 缓存用户信息 */ - async catchUserInfo(userToken: Auth.loginToken) { + async catchUserInfo(userToken: ApiAuth.loginToken) { let catchSuccess = false; // 先存储token const { token, refreshToken } = userToken; diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index 710fd28..883d372 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -4,4 +4,23 @@ declare namespace ApiAuth { /** 返回的用户信息 */ type UserInfo = Auth.UserInfo; + /* 登录token字段 */ + interface loginToken { + token: string; + refreshToken: string; + } +} +declare namespace CommonList { + /* 返回的性别类型 */ + type GenderType = '0' | '1' | null; + interface UserList { + id: number; + name: string; + age: number; + gender: GenderType; + email: string; + address: string; + role: Auth.RoleType; + disabled: boolean; + } } diff --git a/src/typings/business.d.ts b/src/typings/business.d.ts index 2ef1f2c..c9d95a3 100644 --- a/src/typings/business.d.ts +++ b/src/typings/business.d.ts @@ -1,19 +1,7 @@ /** 用户相关模块 */ declare namespace Auth { - /** - * 用户角色类型(前端静态路由用角色类型进行路由权限的控制) - * - super: 超级管理员(该权限具有所有路由数据) - * - admin: 管理员 - * - user: 用户 - * - custom: 自定义角色 - */ - - /** 用户信息 */ - interface loginToken { - token: string; - refreshToken: string; - } - type RoleType = 'super' | 'admin' | 'manage' | 'user'; + /** 用户角色类型 */ + type RoleType = 'super' | 'admin' | 'user'; interface UserInfo { /** 用户id */ userId: number; @@ -48,15 +36,3 @@ declare namespace Message { } } -declare namespace CommonList { - interface UserList { - id: number; - name: string; - age: number; - gender: '0' | '1' | null; - email: string; - address: string; - role: RoleType; - disabled: boolean; - } -} diff --git a/src/typings/naive-ui.d.ts b/src/typings/naive-ui.d.ts new file mode 100644 index 0000000..1c6a290 --- /dev/null +++ b/src/typings/naive-ui.d.ts @@ -0,0 +1,3 @@ +declare namespace NaiveUI { + type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning'; +} diff --git a/src/typings/union-key.d.ts b/src/typings/union-key.d.ts new file mode 100644 index 0000000..93f1450 --- /dev/null +++ b/src/typings/union-key.d.ts @@ -0,0 +1,4 @@ +declare namespace UnionKey { + /* http请求头content-type类型 */ + type ContentType = 'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'; +} \ No newline at end of file diff --git a/src/views/list/commonList/index.vue b/src/views/list/commonList/index.vue index eccb0c3..44a0888 100644 --- a/src/views/list/commonList/index.vue +++ b/src/views/list/commonList/index.vue @@ -132,161 +132,160 @@ diff --git a/src/views/test/test1/index.vue b/src/views/test/test1/index.vue index 9df337c..d668f3b 100644 --- a/src/views/test/test1/index.vue +++ b/src/views/test/test1/index.vue @@ -25,6 +25,14 @@ > use online post + + use online formPost + use online put - - use online patch - - - to use mock - - - use online patch - import { fetachGet, - fetachPost, + fetachPost, + fetachFormPost, fetachDelete, fetachPut, - fetachPatch, fetchMock, testFailedRequest, testFailedResponse, @@ -130,7 +114,7 @@ const pinter = () => { msg.value = import.meta.env; }; const get = () => { - fetachGet().then((res) => { + fetachGet({a:112211}).then((res) => { msg.value = res; }); }; @@ -152,6 +136,15 @@ const post = () => { msg.value = res; }); }; + +function formPost() { + const params = { + data: '2022-2-2', + }; + fetachFormPost(params).then((res) => { + msg.value = res; + }); +} const put = () => { const params = { data: '2022-2-2', @@ -160,14 +153,6 @@ const put = () => { msg.value = res; }); }; -const patch = () => { - const params = { - data: '2022-2-2', - }; - fetachPatch(params).then((res) => { - msg.value = res; - }); -}; // 测试请求失败 const failedRequest = () => {