如果动态路径不存在,如何检查 Next.js 并在检查数据库后返回 404?
例如 localhost:3000/categories/1 存在,但 localhost:3000/categories/2 不存在,因此返回 404 该页面不存在
pages
|
----categories
-----------index.js
-----------[id].js
例如,如果 ID数据库中不存在,如何预检查如果不存在返回404页面
For example localhost:3000/categories/1 exists, but localhost:3000/categories/2 does not exists so to return 404 that page does not exists
pages
|
----categories
-----------index.js
-----------[id].js
For example if an ID does not exist in the database, how to pre-check if does not exists return 404 page
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会在您的前端获取数据,如果数据存在,则显示该页面,如果不重定向到您的 404 错误页面。
I would fetch for data on your front-end, if data exists display the page if not redirect to your 404 error page.
在 getServerSideProps 处
检查数据,如果数据不存在:
这将返回404文件。
At the getServerSideProps
check for the data, and if data does not exists:
This will return to the 404 file.