|
|
@@ -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>
|