gpt4 book ai didi

c# - MVC 身份,启用用户名,但登录中断

转载 作者:太空宇宙 更新时间:2023-11-03 12:05:25 24 4
gpt4 key购买 nike

我希望用户将他们的名字添加到应用程序(并且我已成功存储它)并使用他们的电子邮件保持登录。但是当登录时我得到“无效的登录尝试”并且我不知道为什么...

在模型(AccountViewModel)中我添加了姓名:

[Required]
public string Name { get; set; }

AccountController 中,我进行了以下更改以存储注册时的值

var user = new ApplicationUser {
UserName = model.Name,
Email = model.Email
};

并且在 Register.cshtml 中添加了一个字段来存储他们的名字

<div class="form-group">
@Html.LabelFor(m => m.Name, new { @class = "col-md-2 control-label" })
<div class="col-md-10">
@Html.TextBoxFor(m => m.Name, new { @class = "form-control" })
</div>
</div>

我所做的唯一更改是 UserName 而不是 Email。由于登录使用电子邮件,我不确定为什么登录会受到影响。

// 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:
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);
}
}

最佳答案

您用作模型名称的用户名是用于身份验证的用户名,而不是电子邮件。在这种情况下,您可能需要创建一个新字段来存储您的姓名。

关于c# - MVC 身份,启用用户名,但登录中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55324521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com