如果动态路径不存在,如何检查 Next.js 并在检查数据库后返回 404?

发布于 2025-01-11 15:44:30 字数 252 浏览 0 评论 0原文

例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦萦几度 2025-01-18 15:44:30

我会在您的前端获取数据,如果数据存在,则显示该页面,如果不重定向到您的 404 错误页面。

I would fetch for data on your front-end, if data exists display the page if not redirect to your 404 error page.

情深缘浅 2025-01-18 15:44:30

在 getServerSideProps 处
检查数据,如果数据不存在:

  if (!categories) {
    return {
      notFound: true,
    };
  }

这将返回404文件。

At the getServerSideProps
check for the data, and if data does not exists:

  if (!categories) {
    return {
      notFound: true,
    };
  }

This will return to the 404 file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文