ASP.NET Core - Razor 编辑表单


在本章中,我们将继续讨论标签助手。我们还将在应用程序中添加一个新功能,并使其能够编辑现有员工的详细信息。我们将首先在每个员工的侧面添加一个链接,该链接将转到 HomeController 上的编辑操作。

@model HomePageViewModel  
@{  
   ViewBag.Title = "Home"; 
} 
<h1>Welcome!</h1> 

<table> 
   @foreach (var employee in Model.Employees) { 
      <tr> 
         <td>@employee.Name</td> 
         
         <td> 
            <a asp-controller = "Home" asp-action = "Details" 
               asp-routeid = "@employee.Id">Details</a> 
            
            <a asp-controller = "Home" asp-action = "Edit" 
               asp-routeid = "@employee.Id">Edit</a> 
               
         </td> 
      </tr> 
   } 
</table>

我们还没有“编辑”操作,但我们需要一个可以编辑的员工 ID。因此,让我们首先通过右键单击“视图”→“主文件夹”并选择“添加”→“新项目”来创建一个新视图。

查看主页

在中间窗格中,选择 MVC 视图页面;调用页面Edit.cshtml。现在,单击“添加”按钮。

在Edit.cshtml文件中添加以下代码。

@model Employee 
@{ 
   ViewBag.Title = $"Edit {Model.Name}"; 
} 
<h1>Edit @Model.Name</h1>  

<form asp-action="Edit" method="post"> 
   <div> 
      <label asp-for = "Name"></label> 
      <input asp-for = "Name" /> 
      <span asp-validation-for = "Name"></span> 
   </div> 
   
   <div> 
      <input type = "submit" value = "Save" /> 
   </div> 
</form>

对于此页面的标题,我们可以说我们要编辑,然后提供员工姓名。

  • Edit前面的美元符号将允许运行时将 Model.Name 替换为该属性中的值(例如员工姓名)。

  • 在表单标签内,我们可以使用像 asp-action 和 asp-controller 这样的标签助手。这样当用户提交此表单时,它会直接转到特定的控制器操作。

  • 在本例中,我们想要转到同一控制器上的“编辑”操作,并且我们想要明确表示对于此表单上的方法,它应该使用 HttpPost。

  • 表单的默认方法是 GET,我们不想使用 GET 操作来编辑员工。

  • 在标签标签中,我们使用了 asp-for 标签助手,它表示这是模型的 Name 属性的标签。该标签助手可以将 Html.For 属性设置为具有正确的值,并设置该标签的内部文本,以便它实际显示我们想要的内容,例如员工姓名。

让我们转到 HomeController 类并添加Edit操作,该操作返回一个视图,为用户提供一个表单来编辑员工,然后我们需要第二个 Edit 操作来响应 HttpPost,如下所示。

[HttpGet] 
public IActionResult Edit(int id) { 
   var context = new FirstAppDemoDbContext(); 
   SQLEmployeeData sqlData = new SQLEmployeeData(context); 
   var model = sqlData.Get(id); 
   
   if (model == null) { 
      return RedirectToAction("Index"); 
   } 
   return View(model); 
}

首先,我们需要一个编辑操作来响应 GET 请求。它将需要员工 ID。这里的代码与我们在“详细信息”操作中的代码类似。我们首先提取用户想要编辑的员工的数据。我们还需要确保该员工确实存在。如果它不存在,我们会将用户重定向回索引视图。但是当员工存在时,我们将渲染编辑视图。

我们还需要响应表单将发送的 HttpPost。

让我们在 HomeController.cs 文件中添加一个新类,如以下程序所示。

public class EmployeeEditViewModel { 
   [Required, MaxLength(80)] 
   public string Name { get; set; } 
}

在响应 HttpPost 的编辑操作中,将采用 EmployeeEditViewModel,但不是员工本身,因为我们只想捕获 Edit.cshtml 文件中表单中的项目。

以下是编辑操作的实现。

[HttpPost] 
public IActionResult Edit(int id, EmployeeEditViewModel input) { 
   var context = new FirstAppDemoDbContext(); 
   SQLEmployeeData sqlData = new SQLEmployeeData(context); 
   var employee = sqlData.Get(id); 
   
   if (employee != null && ModelState.IsValid) { 
      employee.Name = input.Name; 
      context.SaveChanges();  
      return RedirectToAction("Details", new { id = employee.Id }); 
   } 
   return View(employee); 
}

根据我们的路由规则,编辑表单应始终从 URL 中具有 ID 的 URL 传递,例如/home/edit/1

  • 该表单始终会回发到同一 URL,/home/edit/1。

  • MVC 框架将能够从 URL 中提取该 ID 并将其作为参数传递。

  • 在数据库中执行更新操作之前,我们始终需要检查 ModelState 是否有效,并确保该员工在数据库中并且不为空。

  • 如果这些都不成立,我们将返回一个视图并允许用户重试。尽管在具有并发用户的实际应用程序中,如果员工为空,则可能是因为员工详细信息被某人删除了。

  • 如果该员工不存在,请告诉用户该员工不存在。

  • 否则,检查 ModelState。如果 ModelState 无效,则返回一个视图。这允许修复编辑并使 ModelState 有效。

  • 将名称从输入视图模型复制到从数据库检索的员工并保存更改。SaveChagnes() 方法会将所有这些更改刷新到数据库中。

下面是HomeController的完整实现。

using Microsoft.AspNet.Mvc; 

using FirstAppDemo.ViewModels; 
using FirstAppDemo.Services; 
using FirstAppDemo.Entities; 
using FirstAppDemo.Models; 

using System.Collections.Generic; 
using System.Linq; 
using System.ComponentModel.DataAnnotations;  

namespace FirstAppDemo.Controllers { 
   public class HomeController : Controller { 
      public ViewResult Index() { 
         var model = new HomePageViewModel(); 
         using (var context = new FirstAppDemoDbContext()) { 
            SQLEmployeeData sqlData = new SQLEmployeeData(context); 
            model.Employees = sqlData.GetAll(); 
         }  
         return View(model); 
      }  
      public IActionResult Details(int id) { 
         var context = new FirstAppDemoDbContext(); 
         SQLEmployeeData sqlData = new SQLEmployeeData(context); 
         var model = sqlData.Get(id)
         
         if (model == null) { 
            return RedirectToAction("Index"); 
         } 
         return View(model); 
      } 
      [HttpGet] 
      public IActionResult Edit(int id) { 
         var context = new FirstAppDemoDbContext(); 
         SQLEmployeeData sqlData = new SQLEmployeeData(context); 
         var model = sqlData.Get(id); 
            
         if (model == null) { 
            return RedirectToAction("Index"); 
         } 
         return View(model); 
      }  
      [HttpPost] 
      public IActionResult Edit(int id, EmployeeEditViewModel input) { 
         var context = new FirstAppDemoDbContext(); 
         SQLEmployeeData sqlData = new SQLEmployeeData(context); 
         var employee = sqlData.Get(id); 
         
         if (employee != null && ModelState.IsValid) { 
            employee.Name = input.Name; 
            context.SaveChanges();  
            return RedirectToAction("Details", new { id = employee.Id }); 
         } 
         return View(employee); 
      } 
   }
   public class SQLEmployeeData {
      private FirstAppDemoDbContext _context { get; set; }
      public SQLEmployeeData(FirstAppDemoDbContext context) {
         _context = context;
      }
      public void Add(Employee emp) {
         _context.Add(emp);
         _context.SaveChanges();
      }
      public Employee Get(int ID) {
         return _context.Employees.FirstOrDefault(e => e.Id == ID);
      }
      public IEnumerable<Employee> GetAll() {
         return _context.Employees.ToList<Employee>();
      }
   }
   public class HomePageViewModel {
      public IEnumerable<Employee> Employees { get; set; }
   }
   public class EmployeeEditViewModel {
      [Required, MaxLength(80)]
      public string Name { get; set; }
   }
}

让我们编译程序并运行应用程序。

编译并运行程序

我们现在有一个可用的编辑链接;让我们通过单击“编辑”链接来编辑 Josh 的详细信息。

编辑乔希

让我们把名字改成乔什·格罗班。

乔什·格罗班

单击“保存”按钮。

保存按钮

您可以看到名称已更改为 Josh Groban,如上面的屏幕截图所示。现在让我们单击主页链接。

名称已更改

在主页上,您现在将看到更新后的名称。