繁体   English   中英

在ASP.NET Core身份中编辑用户

[英]Editing users in ASP.NET Core Identity

我只是想为我的身份数据库创建一个“编辑”页面。 我正在使用Razor Pages,并且是它的新手。 我找到了一些针对MVC的解决方案,但是由于使用了Views和其他类似Controllers的东西,因此它们对我而言实际上并不起作用。 我有一个主页Index.cshtml,可以从下面的列表中选择用户,如下图

清单

然后单击提交按钮将其删除。

我这样处理删除:

CSHTML文件:

<button type="submit" class="btn btn-sm btn-danger" asp-route-id="@user.Id" asp-page-handler="Del">Del</button>
<button type="submit" class="btn btn-sm btn-primary" asp-route-id="@user.Id" asp-page-handler="Change">Change</button>

CSHTML.CS文件:

   public ApplicationUser ApUser { get; set; }
   public async Task<ActionResult> OnPostDel(string id)
    {
        ApUsers = _userManager.Users.ToList();
        ApUser = await _userManager.FindByIdAsync(id);
        if (ApUser != null)
        {
            IdentityResult result = await _userManager.DeleteAsync(ApUser);
        }
        //return RedirectToAction("UserChange/Index");
        return RedirectToPage("Index");
    }

它对我来说还可以,但是我也需要编辑。 所以我在Index.cshtml.cs中的Edit POST方法看起来像:

   public async Task<ActionResult> OnPostChange(string id)
   {
        ApUsers = _userManager.Users.ToList();
        ApUser = await _userManager.FindByIdAsync(id);
        if (ApUser == null)
        {
            return NotFound();
        }
        else return RedirectToPage("Edit");
   }

我的Edit.cshtml.cs看起来像这样:

<form asp-action="Edit" asp-controller="Users">
<div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group">
    <input type="hidden" asp-for="Id" />
</div>
<div class="form-group">
    <label asp-for="Email" class="control-label">Email</label>
    <input type="text" asp-for="Email" class="form-control" />
</div>
<div class="form-group">
    <label asp-for="Score" class="control-label">Score</label>
    <input type="number" asp-for="Score" class="form-control" />
</div>
...
<div class="form-group">
    <input type="submit" asp-page-handler="Edit" value="Save" class="btn btn-default" />
</div>
</form>

和Edit.cshtml.cs:

public async Task<IActionResult> OnPostEdit(string id)
{
    if (ModelState.IsValid)
    {
        ApUser = await _userManager.FindByIdAsync(id);
        if (ApUser != null)
        {
            ApUser.Email = Email;
            ApUser.UserName = Email;
            ApUser.Score = Score;
            ApUser.Position = Position;
            ApUser.Sequence = Sequence;

            var result = await _userManager.UpdateAsync(ApUser);
            if (result.Succeeded)
            {
                return RedirectToAction("Index");
            }
            else
            {
                foreach (var error in result.Errors)
                {
                    ModelState.AddModelError(string.Empty, error.Description);
                }
            }
        }
    }
    return RedirectToAction("Index");
}

当然这是行不通的。 我只是想为Razor Pages重新制作一些MVC示例。 也许您对此有更好的解决方案,但我确实停留在这里。

所以,是的,我只是在这样的Index.cshtml页面上做了一个按钮,它为编辑页面提供了asp-route-id:

<a asp-page="Edit" class="btn btn-sm btn-primary" asp-route-id="@user.Id">Edit</a>

在Edit.cshtml.cs文件上创建一个InputModel:

   public InputModel Input { get; set; }
    public class InputModel
    {
        [Required(ErrorMessage ="{0} не может быть пустым")]
        [EmailAddress(ErrorMessage ="Неверный формат {0}")]
        [Display(Name = "Email")]
        public string Email { get; set; }

        [Required(ErrorMessage = "Введите {0}")]
        [StringLength(5, ErrorMessage = "{0} должна быть из {1} символов", MinimumLength = 5)]
        [Display(Name = "Последовательность")]
        public string Sequence { get; set; }
        ...
    }

只需添加到Edit.cshtml文件@page“ {id}”中,即可通过上一页的OnPost方法提供它,从而为用户提供了对模型的更改:

public async Task<IActionResult> OnPostAsync(string id)
{
    ApUser = await _userManager.FindByIdAsync(id);
    if (!ModelState.IsValid)
    {
        return Page();
    }
    ApUser.Email = Input.Email;
    ApUser.Score = Input.Score;
    ApUser.Sequence = Input.Sequence;
    ApUser.Position = 0;
    await _userManager.UpdateAsync(ApUser);
    Message = ApUser.Email;
    return RedirectToPage("Index");
}

而且我只是在Edit.cshtml中使用模型

<form method="post" asp-route-id="@Model.ApUser.Id">
<div class="form-group">
<label asp-for="Input.Email"></label>
<input asp-for="Input.Email" class="form-control" value="@Model.ApUser.Email.ToString()" />
<span asp-validation-for="Input.Email" class="text-danger"></span>
</div>
...
<button type="submit" class="btn btn-default">Save</button>
</form>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM