ASP.NET MVC - URL Slug 的正则表达式

发布于 2024-08-03 04:22:10 字数 450 浏览 7 评论 0原文

我正在编写一个用于路由的 URL Slug。我应该将段塞约束留空还是什么?

这是我的代码:

routes.MapRoute(
                null,
                "q/{slug}/{id}",
                new { controller = "q", action = "Index" },
                new { id = @"^(\{){0,1}[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}(\}){0,1}$" }
            );

slug 将采用这种格式

how_do_you_open_jar_file_on_computer

I am writing a URL Slug for routing. Should I leave the slug constraint blank or what?

Here is my code:

routes.MapRoute(
                null,
                "q/{slug}/{id}",
                new { controller = "q", action = "Index" },
                new { id = @"^(\{){0,1}[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}(\}){0,1}$" }
            );

The slug will be in this format

how_do_you_open_jar_file_on_computer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

栀梦 2024-08-10 04:22:10

我会把它留空。我会将其留给控制器中的操作来确定其是否有效。这样您就可以轻松抛出 404 错误或重定向到默认页面。

I would leave it blank there. I would leave it up to the Action in the Controller to determine if its valid or not. That way you can easily throw 404 errors or redirect to default pages.

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