如何将Route插入到RouteCollection的顶部

发布于 2024-11-13 08:45:24 字数 219 浏览 3 评论 0原文

我需要在 mvc 应用程序处理期间插入一条路由。我陷入困境,因为我只能使用 MapPageRoute 将新路由添加到路由表的末尾,并且我可以使用 Insert 将路由添加到集合的开头,但在这种情况下,我无法定义此路由名称,所以我未来无法管理。

所以问题是:是否有机会将具有定义名称的路由添加到路由表的开头?

有谁知道吗?

ps 映射到末尾并使用 Reverse 是个坏主意。

I am need to insert a route during the mvc application processing. I am in stuck because i can use MapPageRoute only to add new route to the end of routings table, and i can use Insert to add route to the start of collection, but in this case i can't define this routing name, so i can't manage it in future.

So the question: is any opportunity to add route with defined name to the start of routes table exists?

Does anyone know?

p.s. map to the end and use Reverse is bad idea.

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

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

发布评论

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

评论(1

枫以 2024-11-20 08:45:24

您可以结合使用映射和插入。映射路线会返回一个 Route 对象。您可以映射一条路由,立即将其删除,然后将其插入,如下所示:

Route r = routes.MapRoute(
                                "SomeName", // Route name
                                "{controller}/{action}/{id}", // URL with parameters
                                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
                            );
routes.Remove(r);
routes.Insert(0, r);

这会在路由表的顶部提供一条命名路由。

You can use a combination of Map and insert. Mapping a route returns a Route object. You can map a route, immediately remove it and then Insert it like so:

Route r = routes.MapRoute(
                                "SomeName", // Route name
                                "{controller}/{action}/{id}", // URL with parameters
                                new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
                            );
routes.Remove(r);
routes.Insert(0, r);

This gets you a named route at the top of your Route Table.

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