Fane
Results
4
comments of
Fane
你的需求似乎并不需要使用帮你管理请求的工具,因为你的意图就是只执行一次。另外,我推荐你尝试useSWR管理全局状态或请求
@dennev I use this code ```ts const [data, { refetch }] = createResource(async () => { await sleep(1000); // wait 1s return ++num; }); ``` to make sure the component...
@dennev It seems like you don't understand what happens. try to click this then you will see `fallback` , what means showing `fallback` never needs to destory `Suspense`. I change...