gpt4 book ai didi

reactjs - 期望 SWR 库返回缓存数据但没有发生

转载 作者:行者123 更新时间:2023-12-05 06:02:47 27 4
gpt4 key购买 nike

我正在使用 Vercel SWR Hook usrSWR,我希望我可以将数据存储在某个遥远组件的缓存中,而不必使用上下文或其他一些全局状态管理器。

具体来说,我在 IndexPage 中使用 initialData 设置缓存数据,我可以看到返回的 data 是正确的,但是当我尝试从中检索相同的数据时OtherComponent 数据返回为未定义。

我在codesandbox中有代码:https://codesandbox.io/s/useswr-global-cache-example-forked-8qxh7?file=/pages/index.js

import useSWR from "swr";

export default function IndexPage({ speakersData }) {
const { data } = useSWR("globalState", { initialData: speakersData });

return (
<div>
This is the Index Page <br />
data: {JSON.stringify(data)}
<br />
<OtherComponent></OtherComponent>
</div>
);
}

function OtherComponent() {
const { data } = useSWR("globalState");
return <div>I'm thinking this should get my global cache but it does not {JSON.stringify(data)}</div>;
}

export async function getServerSideProps() {
const speakersData = [{ id: 101 }, { id: 102 }];
return { props: { speakersData: speakersData } };
}

最佳答案

恐怕你需要将数据传递给子组件(或使用 React Context)来填充它的 initialData ,否则它最初不会有任何数据 -传递给 initialData 的数据未存储在缓存中。

另外,除非你provide the fetcher method globally ,您应该将其传递给 useSWR 调用。

import useSWR from "swr";

const getData = async () => {
return [{ id: 101 }, { id: 102 }];
};

export default function IndexPage({ speakersData }) {
const { data } = useSWR("globalState", getData, { initialData: speakersData });

return (
<div>
This is the Index Page <br />
data: {JSON.stringify(data)}
<br />
<OtherComponent speakersData={speakersData}></OtherComponent>
</div>
);
}

function OtherComponent({ speakersData }) {
const { data } = useSWR("globalState", getData, { initialData: speakersData });
return <div>I'm thinking this should get my global cache but it does not {JSON.stringify(data)}</div>;
}

export async function getServerSideProps() {
const speakersData = await getData();
return { props: { speakersData } };
}

关于reactjs - 期望 SWR 库返回缓存数据但没有发生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66842933/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com