如何根据MVC3中属性中定义的角色隐藏选项卡?

时间:2011-09-02 16:12:06

标签: asp.net asp.net-mvc-3 attributes roles

在MVC3网站的默认安装中,左上角会创建选项卡。我想根据当前用户是否有权访问索引ViewResult来隐藏/显示这些选项卡。 ViewResult允许的角色由属性定义。有没有办法获取ViewResult的角色列表?

1 个答案:

答案 0 :(得分:10)

如果您(根本不清楚)对基于角色的HTML元素的条件显示提出疑问(

@if (User.IsInRole("Administrators"))
{
   @Html.ActionLink("Do Some Action", "DoAction", "SomeController")
}

如果那不是您要求的,请告诉我。


根据您的评论进行跟进:

你的问题让我很感兴趣,我做了一点探讨,发现Vivien Chevallier有一个有趣的想法here,基本上可以让你写出这样的东西:

@Html.ActionLinkAuthorized("The Privilege Zone", "ThePrivilegeZone", "Home", true)

在您的视图中

然后检查控制器操作并呈现链接或不显示。

在他的控制器示例中,您有一个这样的动作:

[Authorize(Roles = "Administrator")]
public ActionResult ThePrivilegeZone()
{
    return View();
}

(我想这里的关键点是你的View不知道对“管理员”的蹲坐,并依赖扩展代码来完成繁重的工作:

public static MvcHtmlString ActionLinkAuthorized(
   this HtmlHelper htmlHelper, 
   string linkText, string actionName, string controllerName, 
   RouteValueDictionary routeValues, 
   IDictionary<string, object> htmlAttributes, bool showActionLinkAsDisabled)
{
   if (htmlHelper.ActionAuthorized(actionName, controllerName))
   {
      return htmlHelper.ActionLink(
         linkText, 
         actionName, controllerName, routeValues, htmlAttributes);
   }
   else
   {
      if (showActionLinkAsDisabled)
      {
         TagBuilder tagBuilder = new TagBuilder("span");
         tagBuilder.InnerHtml = linkText;
         return MvcHtmlString.Create(tagBuilder.ToString());
      }
      else
      {
         return MvcHtmlString.Empty;
      }
   }
}

不是在这里剪切/粘贴所有代码,而是可以查看它并查看他为此获得的示例应用程序。我认为这种方法特别有趣的是视图可以显示PrivilegeZone链接,但只知道其他东西将决定是否是这种情况。因此,假设您有新的要求只允许“管理员”或“所有者”的人员访问该链接,您可以相应地修改控制器操作,而不是触摸视图代码。有趣的想法,至少对我而言。