feat(request): get & post 请求

This commit is contained in:
菲鸽 2024-02-01 15:21:36 +08:00
parent 58c6ebe870
commit e5732c36fb
7 changed files with 360 additions and 248 deletions

2
env/.env vendored
View File

@ -12,3 +12,5 @@ VITE_WX_APPID = 'wxa2abb91f64032a2b'
# 参考文档如下 # 参考文档如下
# https://uniapp.dcloud.net.cn/tutorial/i18n.html#vue%E7%95%8C%E9%9D%A2%E5%92%8Cjs%E5%86%85%E5%AE%B9%E7%9A%84%E5%9B%BD%E9%99%85%E5%8C%96 # https://uniapp.dcloud.net.cn/tutorial/i18n.html#vue%E7%95%8C%E9%9D%A2%E5%92%8Cjs%E5%86%85%E5%AE%B9%E7%9A%84%E5%9B%BD%E9%99%85%E5%8C%96
VITE_FALLBACK_LOCALE = 'zh-Hans' VITE_FALLBACK_LOCALE = 'zh-Hans'
VITE_SERVER_BASEURL = 'https://ukw0y1.laf.run'

View File

@ -87,6 +87,7 @@
"dayjs": "1.11.10", "dayjs": "1.11.10",
"pinia": "2.0.36", "pinia": "2.0.36",
"pinia-plugin-persistedstate": "3.2.1", "pinia-plugin-persistedstate": "3.2.1",
"qs": "^6.11.2",
"vue": "3.2.47", "vue": "3.2.47",
"vue-i18n": "9.9.0" "vue-i18n": "9.9.0"
}, },

521
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,36 @@
<route lang="json5">
{
layout: 'demo',
style: {
navigationBarTitleText: '请求',
},
}
</route>
<template>
<view class="mt-6">
<!-- http://localhost:9000/#/pages/index/request -->
<button @click="testRequest" class="my-4">测试 GET 请求</button>
<view class="text-xl">请求数据如下</view>
<view class="text-green h-10">{{ JSON.stringify(data) }}</view>
<button @click="testRequest2" class="my-4">测试 POST 请求</button>
<view class="text-xl">请求数据如下</view>
<view class="text-green h-10">{{ JSON.stringify(data2) }}</view>
</view>
</template>
<script lang="ts" setup>
import { getFoo, postFoo, FooItem } from '@/service/foo'
const data = ref<FooItem>()
const testRequest = async () => {
const res = await getFoo('菲鸽')
data.value = res.result
}
const data2 = ref<FooItem>()
const testRequest2 = async () => {
const res = await postFoo('菲鸽2')
data2.value = res.result
}
</script>

4
src/service/foo.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export type FooItem = {
id: string
name: string
}

23
src/service/foo.ts Normal file
View File

@ -0,0 +1,23 @@
import { http } from '@/utils/http'
import type { FooItem } from './foo.d'
export { FooItem }
/** get 请求 */
export const getFoo = (name: string) => {
return http<FooItem>({
url: `/foo`,
method: 'GET',
query: { name },
})
}
/** get 请求 */
export const postFoo = (name: string) => {
return http<FooItem>({
url: `/foo`,
method: 'POST',
query: { name }, // post 请求也支持 query
data: { name },
})
}

View File

@ -1,7 +1,10 @@
/* eslint-disable no-param-reassign */ /* eslint-disable no-param-reassign */
import qs from 'qs'
import { useUserStore } from '@/store' import { useUserStore } from '@/store'
import { UserInfo } from '@/typings' import { UserInfo } from '@/typings'
type CustomRequestOptions = UniApp.RequestOptions & { query?: Record<string, any> }
type Data<T> = { type Data<T> = {
code: number code: number
msg: string msg: string
@ -15,7 +18,19 @@ const baseURL = import.meta.env.VITE_SERVER_BASEURL
// 拦截器配置 // 拦截器配置
const httpInterceptor = { const httpInterceptor = {
// 拦截前触发 // 拦截前触发
invoke(options: UniApp.RequestOptions) { invoke(options: CustomRequestOptions) {
console.log(options)
// 接口请求支持通过 query 参数配置 queryString
if (options.query) {
const queryStr = qs.stringify(options.query)
if (options.url.includes('?')) {
options.url += `&${queryStr}`
} else {
options.url += `?${queryStr}`
}
}
// 1. 非 http 开头需拼接地址 // 1. 非 http 开头需拼接地址
if (!options.url.startsWith('http')) { if (!options.url.startsWith('http')) {
options.url = baseURL + options.url options.url = baseURL + options.url
@ -41,11 +56,13 @@ uni.addInterceptor('request', httpInterceptor)
// 拦截 uploadFile 文件上传 // 拦截 uploadFile 文件上传
uni.addInterceptor('uploadFile', httpInterceptor) uni.addInterceptor('uploadFile', httpInterceptor)
export const http = <T>(options: UniApp.RequestOptions) => { export const http = <T>(options: CustomRequestOptions) => {
// 1. 返回 Promise 对象 // 1. 返回 Promise 对象
return new Promise<Data<T>>((resolve, reject) => { return new Promise<Data<T>>((resolve, reject) => {
uni.request({ uni.request({
...options, ...options,
dataType: 'json',
responseType: 'json',
// 响应成功 // 响应成功
success(res) { success(res) {
// 状态码 2xx参考 axios 的设计 // 状态码 2xx参考 axios 的设计