fix: modify request format

This commit is contained in:
chansee97 2024-03-29 13:28:30 +08:00
parent c20d74ddc1
commit e81c0197df
12 changed files with 40 additions and 66 deletions

View File

@ -7,7 +7,6 @@ import {
Logo, Logo,
Menu, Menu,
Notices, Notices,
Reload,
Search, Search,
Setting, Setting,
TabBar, TabBar,
@ -52,7 +51,6 @@ const appStore = useAppStore()
</div> </div>
<div class="flex-y-center h-full"> <div class="flex-y-center h-full">
<Search /> <Search />
<Reload />
<Notices /> <Notices />
<FullScreen /> <FullScreen />
<DarkModeSwitch /> <DarkModeSwitch />

View File

@ -10,7 +10,6 @@ import Setting from './header/Setting.vue'
import Notices from './header/Notices.vue' import Notices from './header/Notices.vue'
import UserCenter from './header/UserCenter.vue' import UserCenter from './header/UserCenter.vue'
import Search from './header/Search.vue' import Search from './header/Search.vue'
import Reload from './header/Reload.vue'
/* 标签栏组件 */ /* 标签栏组件 */
import TabBar from './tab/TabBar.vue' import TabBar from './tab/TabBar.vue'
@ -29,7 +28,6 @@ export {
Notices, Notices,
UserCenter, UserCenter,
Search, Search,
Reload,
TabBar, TabBar,
BackTop, BackTop,
} }

View File

@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import type { RouteLocationNormalized } from 'vue-router' import type { RouteLocationNormalized } from 'vue-router'
import Reload from './Reload.vue'
import { renderIcon } from '@/utils' import { renderIcon } from '@/utils'
import { useAppStore, useTabStore } from '@/store' import { useAppStore, useTabStore } from '@/store'
@ -133,6 +134,7 @@ function handleDropTabs(key: string, option: any) {
</div> </div>
</n-tab> </n-tab>
<template #suffix> <template #suffix>
<Reload />
<n-dropdown <n-dropdown
:options="tabStore.allTabs" :options="tabStore.allTabs"
:render-label="renderDropTabsLabel" :render-label="renderDropTabsLabel"
@ -141,9 +143,9 @@ function handleDropTabs(key: string, option: any) {
size="small" size="small"
@select="handleDropTabs" @select="handleDropTabs"
> >
<n-button tertiary circle type="primary"> <CommonWrapper>
<i-icon-park-outline-application-menu /> <i-icon-park-outline-application-menu />
</n-button> </CommonWrapper>
</n-dropdown> </n-dropdown>
</template> </template>
</n-tabs> </n-tabs>

View File

@ -70,15 +70,15 @@ export function createAlovaInstance(
const apiData = await response.json() const apiData = await response.json()
// 请求成功 // 请求成功
if (apiData[_backendConfig.codeKey] === _backendConfig.successCode) if (apiData[_backendConfig.codeKey] === _backendConfig.successCode)
return handleServiceResult(apiData.data, null) return handleServiceResult(apiData)
// 业务请求失败 // 业务请求失败
const errorResult = handleBusinessError(apiData, _backendConfig) const errorResult = handleBusinessError(apiData, _backendConfig)
return handleServiceResult(null, errorResult) return handleServiceResult(errorResult, false)
} }
// 接口请求失败 // 接口请求失败
const errorResult = handleResponseError(response) const errorResult = handleResponseError(response)
return handleServiceResult(null, errorResult) return handleServiceResult(errorResult, false)
}, },
onError: (error, method) => { onError: (error, method) => {
const tip = `[${method.type}] - [${method.url}] - ${error.message}` const tip = `[${method.type}] - [${method.url}] - ${error.message}`

View File

@ -14,7 +14,7 @@ export const DEFAULT_BACKEND_OPTIONS = {
/** 请求不成功各种状态的错误 */ /** 请求不成功各种状态的错误 */
export const ERROR_STATUS = { export const ERROR_STATUS = {
0: '请求错误~', default: '请求错误~',
400: '400: 请求出现语法错误~', 400: '400: 请求出现语法错误~',
401: '401: 用户未授权~', 401: '401: 用户未授权~',
403: '403: 服务器拒绝访问~', 403: '403: 服务器拒绝访问~',

View File

@ -1,5 +1,5 @@
import { showError } from './utils'
import { import {
ERROR_NO_TIP_STATUS,
ERROR_STATUS, ERROR_STATUS,
} from './config' } from './config'
import { useAuthStore } from '@/store' import { useAuthStore } from '@/store'
@ -15,12 +15,13 @@ type ErrorStatus = keyof typeof ERROR_STATUS
*/ */
export function handleResponseError(response: Response) { export function handleResponseError(response: Response) {
const error: Service.RequestError = { const error: Service.RequestError = {
type: 'Response', errorType: 'Response Error',
code: 0, code: 0,
msg: ERROR_STATUS[0], msg: ERROR_STATUS.default,
data: null,
} }
const errorCode: ErrorStatus = response.status as ErrorStatus const errorCode: ErrorStatus = response.status as ErrorStatus
const msg = ERROR_STATUS[errorCode] || ERROR_STATUS[0] const msg = ERROR_STATUS[errorCode] || ERROR_STATUS.default
Object.assign(error, { code: errorCode, msg }) Object.assign(error, { code: errorCode, msg })
showError(error) showError(error)
@ -37,9 +38,10 @@ export function handleResponseError(response: Response) {
export function handleBusinessError(data: Record<string, any>, config: Required<Service.BackendConfig>) { export function handleBusinessError(data: Record<string, any>, config: Required<Service.BackendConfig>) {
const { codeKey, msgKey } = config const { codeKey, msgKey } = config
const error: Service.RequestError = { const error: Service.RequestError = {
type: 'Business', errorType: 'Business Error',
code: data[codeKey], code: data[codeKey],
msg: data[msgKey], msg: data[msgKey],
data: data.data,
} }
showError(error) showError(error)
@ -50,22 +52,15 @@ export function handleBusinessError(data: Record<string, any>, config: Required<
/** /**
* @description: * @description:
* @param {any} data * @param {any} data
* @param {Service} error * @param {boolean} isSuccess
* @return {*} result * @return {*} result
*/ */
export function handleServiceResult<T = any>(data: any, error: Service.RequestError | null) { export function handleServiceResult(data: any, isSuccess: boolean = true) {
if (error) { return {
const fail: Service.FailedResult = { isSuccess,
error, errorType: null,
data: null, ...data,
}
return fail
} }
const success: Service.SuccessResult<T> = {
error: null,
data,
}
return success
} }
/** /**
@ -84,3 +79,12 @@ export async function handleRefreshToken() {
await authStore.resetAuthStore() await authStore.resetAuthStore()
} }
} }
export function showError(error: Service.RequestError) {
// 如果error不需要提示,则跳过
const code = Number(error.code)
if (ERROR_NO_TIP_STATUS.includes(code))
return
window.$message.error(error.msg)
}

View File

@ -2,10 +2,10 @@ import { createAlovaInstance } from './alova'
import { serviceConfig } from '@/../service.config' import { serviceConfig } from '@/../service.config'
import { generateProxyPattern } from '@/../build/proxy' import { generateProxyPattern } from '@/../build/proxy'
const { url } = generateProxyPattern(serviceConfig[import.meta.env.MODE])
const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y' || false const isHttpProxy = import.meta.env.VITE_HTTP_PROXY === 'Y' || false
const { url } = generateProxyPattern(serviceConfig[import.meta.env.MODE])
export const alovaInstance = createAlovaInstance({ export const alovaInstance = createAlovaInstance({
baseURL: isHttpProxy ? url.proxy : url.value, baseURL: isHttpProxy ? url.proxy : url.value,
}) })

View File

@ -1,10 +0,0 @@
import { ERROR_NO_TIP_STATUS } from './config'
export function showError(error: Service.RequestError) {
// 如果error不需要提示,则跳过
const code = Number(error.code)
if (ERROR_NO_TIP_STATUS.includes(code))
return
window.$message.error(error.msg)
}

View File

@ -20,34 +20,17 @@ declare namespace Service {
successCode?: number | string successCode?: number | string
} }
type RequestErrorType = 'Response' | 'Business' type RequestErrorType = 'Response Error' | 'Business Error'
type RequestCode = string | number type RequestCode = string | number
interface RequestError { interface RequestError {
/** 请求服务的错误类型 */ /** 请求服务的错误类型 */
type: RequestErrorType errorType: RequestErrorType
/** 错误码 */ /** 错误码 */
code: RequestCode code: RequestCode
/** 错误信息 */ /** 错误信息 */
msg: string msg: string
/** 返回的数据 */
data?: any
} }
/** 自定义的请求成功结果 */
interface SuccessResult<T = any> {
/** 请求错误 */
error: null
/** 请求数据 */
data: T
}
/** 自定义的请求失败结果 */
interface FailedResult {
/** 请求错误 */
error: RequestError
/** 请求数据 */
data: null
}
/** 自定义的请求结果 */
type RequestResult<T = any> = SuccessResult<T> | FailedResult
} }

View File

@ -99,7 +99,7 @@ checkUserAccount()
忘记密码 忘记密码
</n-button> </n-button>
</div> </div>
<n-button block type="primary" size="large" :loading="isLoading" @click="handleLogin"> <n-button block type="primary" size="large" :loading="isLoading" :disabled="isLoading" @click="handleLogin">
登录 登录
</n-button> </n-button>
<n-button type="primary" text @click="toOtherForm('register')"> <n-button type="primary" text @click="toOtherForm('register')">

View File

@ -30,10 +30,9 @@ function handleRequestHook() {
function pinterEnv() { function pinterEnv() {
msg.value = import.meta.env msg.value = import.meta.env
} }
function get() { async function get() {
fetachGet({ a: 112211, b: false }).then((res) => { const res = await fetachGet({ a: 112211, b: false })
msg.value = res msg.value = res
})
} }
function delete2() { function delete2() {
fetchDelete().then((res) => { fetchDelete().then((res) => {