什么对象属性包含在 ControllerBase 内部使用的路由名称

发布于 2024-08-18 05:54:27 字数 339 浏览 6 评论 0原文

当 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 技术交流群。

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

发布评论

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

评论(1

深海蓝天 2024-08-25 05:54:27

这个问题已经以各种形式多次出现。简而言之,您不能 - 路由名称不会存储在路由数据中的任何位置。

为此提出了各种解决方法。 查看此答案 用于路由名称跟踪的一种实现的一些代码。周围还有其他人。

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.

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