什么对象属性包含在 ControllerBase 内部使用的路由名称
当 ControllerBase 内部使用它时,如何找到正在使用的路由名称?
例如,我有这样的路由:
routes.MapRoute("Search", "{controller}.mvc/{action}/{criterion}", new { controller = "", action = "", criterion = "" });
...在我的 ControllerBase 中,我需要包含“搜索”的 Object.Property 或 ControllerBase 当前正在使用的路由名称(如果不是搜索)。
谢谢。
-杰西·霍尔
How do I find the Route Name that is being used when inside of the ControllerBase using it?
For example, I have a route like this:
routes.MapRoute("Search", "{controller}.mvc/{action}/{criterion}", new { controller = "", action = "", criterion = "" });
...and in my ControllerBase I need the Object.Property that contains "Search" or the name of the Route that the ControllerBase is currently using if not search.
Thank you.
-Jessy Houle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题已经以各种形式多次出现。简而言之,您不能 - 路由名称不会存储在路由数据中的任何位置。
为此提出了各种解决方法。 查看此答案 用于路由名称跟踪的一种实现的一些代码。周围还有其他人。
This question has come up a number of times in various forms. The short answer is that you can't - the Route name is not stored anywhere in the routing data.
There have been various workarounds proposed for this. See this answer for some code for one implementation of Route name tracking. There are others around as well.