$fetch
Nuxt 使用 ofetch 来全局公开 $fetch 助手函数,用于发出 HTTP 请求。
Nuxt 使用 ofetch 来全局公开 $fetch
助手函数,用于在你的 Vue 应用或 API 路由中发出 HTTP 请求。
在服务器端渲染期间,调用
$fetch
来获取你的内部 API 路由 将直接调用相关函数(模拟请求),从而节省一次额外的 API 调用。在组件中使用
$fetch
而不使用 useAsyncData
进行包装,会导致数据被获取两次:初始在服务器端获取,然后在客户端水合期间再次获取,因为 $fetch
不会将状态从服务器传递到客户端。因此,fetch 将在两端执行,因为客户端必须再次获取数据。我们建议使用 useFetch
或 useAsyncData
+ $fetch
来防止在获取组件数据时重复获取数据。
app.vue
<script setup lang="ts">
// During SSR data is fetched twice, once on the server and once on the client.
const dataTwice = await $fetch('/api/item')
// During SSR data is fetched only on the server side and transferred to the client.
const { data } = await useAsyncData('item', () => $fetch('/api/item'))
// You can also useFetch as shortcut of useAsyncData + $fetch
const { data } = await useFetch('/api/item')
</script>
你可以在任何仅在客户端执行的方法中使用 $fetch
。
pages/contact.vue
<script setup lang="ts">
function contactForm() {
$fetch('/api/contact', {
method: 'POST',
body: { hello: 'world '}
})
}
</script>
<template>
<button @click="contactForm">Contact</button>
</template>
如果你使用
$fetch
在开发环境中调用带有自签名证书的(外部)HTTPS URL,则需要在你的环境中设置 NODE_TLS_REJECT_UNAUTHORIZED=0
。