예를 들어, 우리는 getServerSideProps를 사용하여 다음과 같이 페이지 구성 요소에서 404 페이지로 리디렉션한 적이 있습니다.
getServerSideProps
Next.js 13 및 app 디렉터리에는 서버 구성 요소가 있습니다. 13 和 app 目录,我们有了服务器组件。 getServerSideProps 더 이상 사용하지 않을 때 404 페이지로 리디렉션하는 방법은 무엇입니까?
13
app
문서에 따르면 notFound( ) 函数如下所示,它会渲染相应的 not-found.js 파일을 사용할 수 있습니다.
notFound( )
not-found.js
app/user/not-found.js 文件,则使用 app/not-found.js。如果没有 app/not-found.js이 없으면 Next.js에서 제공하는 기본값을 사용합니다.
app/user/not-found.js
app/not-found.js
문서에 따르면
으아아아 으아아아notFound( )
函数如下所示,它会渲染相应的not-found.js
파일을 사용할 수 있습니다.app/user/not-found.js
文件,则使用app/not-found.js
。如果没有app/not-found.js
이 없으면 Next.js에서 제공하는 기본값을 사용합니다.