如何将Route插入到RouteCollection的顶部
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以结合使用映射和插入。映射路线会返回一个 Route 对象。您可以映射一条路由,立即将其删除,然后将其插入,如下所示:
这会在路由表的顶部提供一条命名路由。
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:
This gets you a named route at the top of your Route Table.