1

Nuxt 3 具有那些惊人的数据获取功能(例如:useFetch),但我发现我需要在渲染时间之后发出请求(例如:从按钮调用并发送搜索词)。

据我所知,useFetch 不在客户端工作,这就是我想要做的

<template>

<button @click="goSearch()">Search</button>

</template>

setup() {
        const goSearch = async () => {
            const { data } = await useFetch('search', () => $fetch('/api/search'));
            console.log(data.value);
        };

        return { goSearch };
    },
}


nuxt3 是否提供内置功能来按需发出 http 请求(客户端官方 http axios 之类的)?

4

1 回答 1

0

$fetch 应该可以工作。问题是一个小错误,现已修复。如果您遇到此错误,只需升级 nuxt/ohmyfetch lib

npx nuxi upgrade --force

更多信息: https ://github.com/nuxt/framework/issues/2502#issuecomment-999783226

于 2021-12-29T11:53:05.203 回答