我正在使用 Vercel SWR 挂钩 usrSWR,我希望我可以在某个遥远的组件中获取存储在缓存中的数据,而不必使用上下文或其他一些全局状态管理器。
具体来说,我IndexPage
使用initialData设置缓存数据,我可以看到data
返回是正确的,但是当我尝试从数据中检索相同的数据时,OtherComponent
返回为未定义。
我在这里有代码和框中的代码: 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 } };
}