如何在ASP.NET MVC视图中返回当前操作?

时间:2008-12-12 11:33:35

标签: c# asp.net-mvc

我想在我的母版页中设置一个CSS类,这取决于当前的控制器和操作。我可以通过ViewContext.Controller.GetType().Name访问当前控制器,但如何获取当前操作(例如IndexShow等)?

11 个答案:

答案 0 :(得分:461)

在RC中,您还可以提取路径数据,如此操作方法名称

ViewContext.Controller.ValueProvider["action"].RawValue
ViewContext.Controller.ValueProvider["controller"].RawValue
ViewContext.Controller.ValueProvider["id"].RawValue

MVC 3更新

ViewContext.Controller.ValueProvider.GetValue("action").RawValue
ViewContext.Controller.ValueProvider.GetValue("controller").RawValue
ViewContext.Controller.ValueProvider.GetValue("id").RawValue

MVC 4的更新

ViewContext.Controller.RouteData.Values["action"]
ViewContext.Controller.RouteData.Values["controller"]
ViewContext.Controller.RouteData.Values["id"]

MVC 4.5的更新

ViewContext.RouteData.Values["action"]
ViewContext.RouteData.Values["controller"]
ViewContext.RouteData.Values["id"]

答案 1 :(得分:82)

使用ViewContext并查看RouteData集合以提取控制器和操作元素。但我认为设置一些指示应用程序上下文的数据变量(例如“editmode”或“error”)而不是控制器/操作会减少视图和控制器之间的耦合。

答案 2 :(得分:61)

获取视图上的当前ID:

ViewContext.RouteData.Values["id"].ToString()

获取当前控制器:

ViewContext.RouteData.Values["controller"].ToString() 

答案 3 :(得分:41)

我知道这是一个较旧的问题,但我看到了它,我认为您可能对替代版本感兴趣,而不是让您的视图处理检索它所需的数据来完成它的工作。

我认为更简单的方法是覆盖OnActionExecuting方法。您将传递包含ActionExecutingContext成员的ActionDescriptor,您可以使用该成员获取您要查找的信息,即ActionName,您还可以访问ControllerDescriptor并且它包含ControllerName。

protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
    ActionDescriptor actionDescriptor = filterContext.ActionDescriptor;
    string actionName = actionDescriptor.ActionName;
    string controllerName = actionDescriptor.ControllerDescriptor.ControllerName;
    // Now that you have the values, set them somewhere and pass them down with your ViewModel
    // This will keep your view cleaner and the controller will take care of everything that the view needs to do it's job.
}

希望这会有所帮助。如果有的话,至少它会为你提问的任何人提供替代方案。

答案 4 :(得分:17)

我看到了不同的答案,并想出了一个班助手:

using System;
using System.Web.Mvc;

namespace MyMvcApp.Helpers {
    public class LocationHelper {
        public static bool IsCurrentControllerAndAction(string controllerName, string actionName, ViewContext viewContext) {
            bool result = false;
            string normalizedControllerName = controllerName.EndsWith("Controller") ? controllerName : String.Format("{0}Controller", controllerName);

            if(viewContext == null) return false;
            if(String.IsNullOrEmpty(actionName)) return false;

            if (viewContext.Controller.GetType().Name.Equals(normalizedControllerName, StringComparison.InvariantCultureIgnoreCase) &&
                viewContext.Controller.ValueProvider.GetValue("action").AttemptedValue.Equals(actionName, StringComparison.InvariantCultureIgnoreCase)) {
                result = true;
            }

            return result;
        }
    }
}

所以在View(或master / layout)中你可以这样使用它(Razor语法):

            <div id="menucontainer">

                <ul id="menu">
                    <li @if(MyMvcApp.Helpers.LocationHelper.IsCurrentControllerAndAction("home", "index", ViewContext)) {
                            @:class="selected"
                        }>@Html.ActionLink("Home", "Index", "Home")</li>
                    <li @if(MyMvcApp.Helpers.LocationHelper.IsCurrentControllerAndAction("account","logon", ViewContext)) {
                            @:class="selected"
                        }>@Html.ActionLink("Logon", "Logon", "Account")</li>
                    <li @if(MyMvcApp.Helpers.LocationHelper.IsCurrentControllerAndAction("home","about", ViewContext)) {
                            @:class="selected"
                        }>@Html.ActionLink("About", "About", "Home")</li>
                </ul>

            </div>

希望它有所帮助。

答案 5 :(得分:13)

您可以从ViewContext的RouteData获取这些数据

ViewContext.RouteData.Values["controller"]
ViewContext.RouteData.Values["action"]

答案 6 :(得分:9)

在MVC中,您应该为View提供所有数据,不要让View收集自己的数据,这样您可以在控制器操作中设置CSS类。

ViewData["CssClass"] = "bold";

并从View中的ViewData中选择此值

答案 7 :(得分:6)

我投票支持这个2:

string currentActionName = ViewContext.RouteData.GetRequiredString("action");

string currentViewName = ((WebFormView)ViewContext.View).ViewPath;

您可以检索当前视图的物理名称和触发它的操作。它可以在部分* .acmx页面中用于确定主机容器。

答案 8 :(得分:2)

我正在使用ASP.NET MVC 4,这对我有用:

ControllerContext.Controller.ValueProvider.GetValue("controller").RawValue
ControllerContext.Controller.ValueProvider.GetValue("action").RawValue

答案 9 :(得分:0)

扩展Dale Ragan's answer,他的重用示例,创建一个派生自Controller的ApplicationController类,然后让所有其他控制器派生自ApplicationController类而不是Controller。

示例:

public class MyCustomApplicationController : Controller {}

public class HomeController : MyCustomApplicationController {}

在新的ApplicationController上创建一个名为ExecutingAction的属性,并使用以下签名:

protected ActionDescriptor ExecutingAction { get; set; }

然后在OnActionExecuting方法中(来自Dale Ragan的回答),只需将ActionDescriptor分配给此属性,您就可以在任何控制器中随时访问它。

string currentActionName = this.ExecutingAction.ActionName;

答案 10 :(得分:0)

在控制器中覆盖此功能

protected override void HandleUnknownAction(string actionName) 
{  TempData["actionName"] = actionName;
   View("urViewName").ExecuteResult(this.ControllerContext);
}