例如,我们曾经使用 getServerSideProps 来重定向到页面组件中的 404 页面,如下所示:
// pages/index.js
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],
},
};
通过 Next.js 13 和 app 目录,我们有了服务器组件。 getServerSideProps 不再使用时如何重定向到 404 页面?
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号