feat: 接口名统一增加API后缀

This commit is contained in:
菲鸽 2024-02-01 15:38:11 +08:00
parent 1b7ae81550
commit 6fce781794
2 changed files with 11 additions and 11 deletions

View File

@ -10,10 +10,10 @@
<template>
<view class="mt-6">
<!-- http://localhost:9000/#/pages/index/request -->
<button @click="testRequest" class="my-4">测试 GET 请求</button>
<button @click="getFoo" 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>
<button @click="postFoo" class="my-4">测试 POST 请求</button>
<view class="text-xl">请求数据如下</view>
<view class="text-green h-10">{{ JSON.stringify(data2) }}</view>
@ -32,24 +32,24 @@
</template>
<script lang="ts" setup>
import { getFoo, postFoo, IFooItem } from '@/service/foo'
import { getFooAPI, postFooAPI, IFooItem } from '@/service/foo'
const recommendUrl = ref('http://laf.run/signup?code=ohaOgIX')
onLoad(() => {
testRequest()
testRequest2()
getFoo()
postFoo()
})
const data = ref<IFooItem>()
const testRequest = async () => {
const res = await getFoo('菲鸽')
const getFoo = async () => {
const res = await getFooAPI('菲鸽')
data.value = res.result
}
const data2 = ref<IFooItem>()
const testRequest2 = async () => {
const res = await postFoo('菲鸽2')
const postFoo = async () => {
const res = await postFooAPI('菲鸽2')
data2.value = res.result
}
</script>

View File

@ -4,7 +4,7 @@ import type { IFooItem } from './foo.d'
export { IFooItem }
/** get 请求 */
export const getFoo = (name: string) => {
export const getFooAPI = (name: string) => {
return http<IFooItem>({
url: `/foo`,
method: 'GET',
@ -13,7 +13,7 @@ export const getFoo = (name: string) => {
}
/** get 请求 */
export const postFoo = (name: string) => {
export const postFooAPI = (name: string) => {
return http<IFooItem>({
url: `/foo`,
method: 'POST',