从类库访问 ViewContext
是否可以从类库访问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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样访问当前路线信息:
You can access current route information like this: