如何在MVC View中获取ViewName,ActionName,ControllerName
1个回答
展开全部
网上搜了很多资料,在View中都是关于获取Controller及Action的方法,却没找到获取ViewName的方法。经过不懈努力,终于想到一个实现方式,即用截取文件名来获得。
初学者可能会问,action的名字和view的名字不是一样吗?
这可不一定,所以,还是用文件名的方式比较保险。
先把获取Controller、Action、ViewName的方式全部列出来:
1、获取Controller
string controllerName =
ViewContext.RouteData.Values["controller"].ToString();
2、获取Action
string actionName = ViewContext.RouteData.Values["action"].ToString();
3、获取ViewName
public static string CurrentViewName(IView view)
{
if (view is BuildManagerCompiledView)
{
string viewName =
((BuildManagerCompiledView)view).ViewPath;
viewName =
viewName.Substring(viewName.LastIndexOf('/'));
viewName =
Path.GetFileNameWithoutExtension(viewName);
return viewName;
}
return
string.Empty;
}
顺便提一句,ViewContext.RouteData.Values中有controller和action,没有view,那还有什么呢?
经过跟踪发现,就这两个,没其他的了。
初学者可能会问,action的名字和view的名字不是一样吗?
这可不一定,所以,还是用文件名的方式比较保险。
先把获取Controller、Action、ViewName的方式全部列出来:
1、获取Controller
string controllerName =
ViewContext.RouteData.Values["controller"].ToString();
2、获取Action
string actionName = ViewContext.RouteData.Values["action"].ToString();
3、获取ViewName
public static string CurrentViewName(IView view)
{
if (view is BuildManagerCompiledView)
{
string viewName =
((BuildManagerCompiledView)view).ViewPath;
viewName =
viewName.Substring(viewName.LastIndexOf('/'));
viewName =
Path.GetFileNameWithoutExtension(viewName);
return viewName;
}
return
string.Empty;
}
顺便提一句,ViewContext.RouteData.Values中有controller和action,没有view,那还有什么呢?
经过跟踪发现,就这两个,没其他的了。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询