$fetch
Nuxt 使用 ofetch 在全局暴露出 $fetch 辅助函数,用于发送 HTTP 请求。
Nuxt 使用 ofetch 在全局暴露出 $fetch 辅助函数,以便在你的 Vue 应用或 API 路由中发送 HTTP 请求。
在服务端渲染期间,调用
$fetch 来获取内部 API 路由 将直接调用相关函数(模拟请求),从而节省一次额外的 API 调用。如果在组件中使用
$fetch 而没有用 useAsyncData 包装它,会导致数据被获取两次:首先在服务端,然后在客户端激活期间再次获取,因为 $fetch 不会将状态从服务端传输到客户端。因此,获取操作会在两侧都执行,因为客户端必须再次获取数据。使用
我们建议使用 useFetch 或 useAsyncData + $fetch,以防止在获取组件数据时发生重复的数据请求。
app/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。
app/pages/contact.vue
<script setup lang="ts">
async function contactForm () {
await $fetch('/api/contact', {
method: 'POST',
body: { hello: 'world' },
})
}
</script>
<template>
<button @click="contactForm">
Contact
</button>
</template>
如果在开发环境中,你使用
$fetch 调用带有自签名证书的(外部)HTTPS URL,则需要在环境中设置 NODE_TLS_REJECT_UNAUTHORIZED=0。传递请求头和 Cookie
当我们在浏览器中调用 $fetch 时,诸如 cookie 之类的用户请求头将被直接发送到 API。
然而,在服务端渲染期间,由于存在服务端请求伪造(SSRF)或身份验证滥用等安全风险,$fetch 不会包含用户的浏览器 cookie,也不会传递来自 fetch 响应的 cookie。
<script setup lang="ts">
// This will NOT forward headers or cookies during SSR
const { data } = await useAsyncData(() => $fetch('/api/cookies'))
</script>
export default defineEventHandler((event) => {
const foo = getCookie(event, 'foo')
// ... Do something with the cookie
})
如果你需要在服务端转发请求头和 cookie,你必须手动传递它们
app/pages/index.vue
<script setup lang="ts">
// This will forward the user's headers and cookies to `/api/cookies`
const requestFetch = useRequestFetch()
const { data } = await useAsyncData(() => requestFetch('/api/cookies'))
</script>
然而,当在服务端使用相对 URL 调用 useFetch 时,Nuxt 将使用 useRequestFetch 来代理请求头和 cookie(不包括不应转发的请求头,例如 host)。