我正在使用 getStaticProps 从服务器端获取数据。我如何将它与 redux 同步?
export async function getStaticProps() { return { props: { trans: "Some data"} }; }
MYYA
相关分类