在登录时检索角色

时间:2016-10-25 18:59:11

标签: asp.net-mvc roles

在我的AccountController中,我有:

    // POST: /Account/Login
    [HttpPost]
    [AllowAnonymous]
    [ValidateAntiForgeryToken]
    public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
    {
        if (!ModelState.IsValid)
        {
            return View(model);
        }

        // This doesn't count login failures towards account lockout
        // To enable password failures to trigger account lockout, change to shouldLockout: true
        var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false);
        switch (result)
        {
            case SignInStatus.Success:
                if (Roles.IsUserInRole(model.Email, "Student")) <-- Here is where error is thrown
                {
                    RedirectToAction("DriveSignUp", "Home");
                }
                return RedirectToLocal(returnUrl);
            case SignInStatus.LockedOut:
                return View("Lockout");
            case SignInStatus.RequiresVerification:
                return RedirectToAction("SendCode", new { ReturnUrl = returnUrl, RememberMe = model.RememberMe });
            case SignInStatus.Failure:
            default:
                ModelState.AddModelError("", "Invalid login attempt.");
                return View(model);
        }
    }

我目前正在整个站点中使用角色,但是在switch语句的Success部分中添加代码时,我收到一条错误,指出尚未启用角色管理器功能。

知道为什么会抛出这个错误吗?

2 个答案:

答案 0 :(得分:1)

您是否启用了角色管理器? 请参阅:RoleManager

System.Web.Security.Roles.Enabled

这应该作为web.config中的roleManager元素中的属性启用:

<configuration>
  <system.web>
    <roleManager enabled="true" />
  </system.web>
</configuration>

答案 1 :(得分:0)

我猜你正在改变你的安全性,无论是从Membership到ASP.NET Identity还是完全升级MVC版本?在任何情况下,您可能都希望使用新的ASP.NET Identity功能,因为System.Web.Security(其中一部分是Roles类)在此处不再使用。如果是,请查看此处的答案以获取更多详细信息:MVC 5 - Roles - IsUserInRole and Adding user to role