我想将页面组件的getServerSideProps道具传递给子组件,但我得到
Unhandled error during request: TypeError: Cannot read property 'value' of undefined at Child
一旦部署(在 Vercel 上)
重现:
import Child from "../components/child";
export default function AnnouncementDetails({data}) {
return(
<>
<Child data={data} />
</>
);
}
export async function getServerSideProps() {
return { props: { data: {value: 1} } };
}
我尝试了很多东西,其中包括:
唯一有效的是将所有代码放在同一个页面组件上。