MVC3 和正则表达式路由参数

发布于 2024-11-27 07:40:23 字数 602 浏览 0 评论 0原文

我们正在转向 MVC3,并且我们已经有了一个复杂的 url 重定向/重写方案。

我们有 [我认为] 复杂的 url,需要分解为其组件值。

例如,网址 http://web-current/billet-grilles/10a50164A.aspx,需要删除 10 和 50164 并将其作为参数传递。

以下是我们现有的正则表达式:

([^/]+)/10[A|a]([0-9]+)[A|a]{0,1}.aspx[\?]*([^/]*)

我已经尝试过,但遇到了问题:

RouteTable.Routes.MapRoute("Department", "{silo}/10[A|a}{departmentId}[A|a]{0,1}.aspx", new {controller = "Department", action = "Index"}, new {silo = ".*",  departmentId = "[0-9]+" })

您有什么建议吗?

We are moving to MVC3 and we already have a complex url redirect/rewrite scheme in place.

We have [what I consider to be] complex urls that need to be decomposed to their component values.

For instance, the url http://web-current/billet-grilles/10a50164A.aspx, needs to have the 10 and the 50164 removed and passed as parameters.

The following is our existing regex:

([^/]+)/10[A|a]([0-9]+)[A|a]{0,1}.aspx[\?]*([^/]*)

I have tried this, but I run into issues:

RouteTable.Routes.MapRoute("Department", "{silo}/10[A|a}{departmentId}[A|a]{0,1}.aspx", new {controller = "Department", action = "Index"}, new {silo = ".*",  departmentId = "[0-9]+" })

Do you have any advice?

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

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

发布评论

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

评论(1

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