例如,我们使用getServerSideProps
重定向到页面组件中的404页面。在新版本中,我们有服务器组件功能。如何重定向到404页面是完成的,因为getServerSideProps
不再使用?
export async function getServerSideProps(context) {
const placeId = context.params.placeId;
const places = await getPlace(placeId);
if (!places.length) {
return {
notFound: true,
}
}
return {
props: {
places[0],
},
};
1条答案
按热度按时间rur96b6h1#
根据文档,您可以使用
notFound()
函数作为示例,如下所示,它将呈现相应的not-found.js
文件: