从类库访问 ViewContext

发布于 2024-10-09 21:48:26 字数 169 浏览 1 评论 0原文

是否可以从类库访问ViewContext?我需要获取当前视图和控制器操作的名称。我在类库项目中添加了 System.Web.dll 和 System.Web.Mvc,但仍然无法找到获得所需内容的方法。 尽管我可以使用 System.Web.HttpContext.Current 访问当前上下文。

Is it possible to access ViewContext from class library? I am in need of getting names of current View and Controller's action. I added both System.Web.dll and System.Web.Mvc in my class library project but still unable to find a way to get what I require.
Although I can access current context using System.Web.HttpContext.Current.

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

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

发布评论

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

评论(1

装迷糊 2024-10-16 21:48:26

您可以像这样访问当前路线信息:

var httpContext = new HttpContextWrapper(HttpContext.Current);
var routeData = System.Web.Routing.RouteTable.Routes.GetRouteData(httpContext);

var controllerName = routeData.Values["controller"].ToString();
var actionName = routeData.Values["action"].ToString();

You can access current route information like this:

var httpContext = new HttpContextWrapper(HttpContext.Current);
var routeData = System.Web.Routing.RouteTable.Routes.GetRouteData(httpContext);

var controllerName = routeData.Values["controller"].ToString();
var actionName = routeData.Values["action"].ToString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文