在本章中,我們將討論和學習在ASP.NET MVC Framework應用程式中構建模型。模型儲存資料,並根據來自控制器中的命令檢索出來,最終在檢視中顯示這些資料。
Model
是一個類的集合,應用程式中可使用這些資料來編寫業務邏輯。 因此,基本上模型是業務領域特定的容器。它用於與資料庫進行互動。也可以用來操縱資料來實現業務邏輯。
下面通過建立一個新的ASP.NET MVC專案,來演示如何應用模型的簡單例子。
開啟Visual Studio,然後單擊選單:檔案 -> 新建 -> 專案 選項。建立一個名稱為:MVCSimpleApp 的MVC專案。
詳細建立過程請參考:/14/125/3680.html
通過在解決方案資源管理器 中右鍵單擊 Controllers 檔案夾來新增一個控制元件器:HomeController。在彈出選單項中選擇:新增 -> 控制器 。
選擇包含讀/寫操作的MVC 5控制器 選項,這個模板將為控制器建立一個具有預設操作的Index
方法。這也將列出其他方法,如:Edit/Delete/Create 。
第1步 - 建立控制器
在Controllers檔案夾中看到一個新的 C# 檔案 - EmployeeController.cs
,在Visual Studio中開啟並進行編輯。修改更新EmployeeController.cs
檔案中的程式碼,其中包含一些預設的動作方法,如下面的程式碼所示 -
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MVCSimpleApp.Controllers {
public class EmployeeController : Controller{
// GET: Employee
public ActionResult Index(){
return View();
}
// GET: Employee/Details/5
public ActionResult Details(int id){
return View();
}
// GET: Employee/Create
public ActionResult Create(){
return View();
}
// POST: Employee/Create
[HttpPost]
public ActionResult Create(FormCollection collection){
try{
// TODO: Add insert logic here
return RedirectToAction("Index");
}catch{
return View();
}
}
// GET: Employee/Edit/5
public ActionResult Edit(int id){
return View();
}
// POST: Employee/Edit/5
[HttpPost]
public ActionResult Edit(int id, FormCollection collection){
try{
// TODO: Add update logic here
return RedirectToAction("Index");
}catch{
return View();
}
}
// GET: Employee/Delete/5
public ActionResult Delete(int id){
return View();
}
// POST: Employee/Delete/5
[HttpPost]
public ActionResult Delete(int id, FormCollection collection){
try{
// TODO: Add delete logic here
return RedirectToAction("Index");
}catch{
return View();
}
}
}
}
第2步 - 新增模型
右鍵單擊解決方案資源管理器 中的Models 檔案夾,然後在彈出選單項中選擇:新增 -> 類 , 將看到新增新專案對話方塊,填寫模型名稱為:Employee.cs ,如下圖所示 -
第3步 - 使用下面的程式碼將一些屬性新增到Employee
類。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MVCSimpleApp.Models {
public class Employee{
public int ID { get; set; }
public string Name { get; set; }
public DateTime JoiningDate { get; set; }
public int Age { get; set; }
}
}
通過新增一個方法來更新EmployeeController.cs
檔案,該方法將返回員工列表。
[NonAction]
public List<Employee> GetEmployeeList(){
return new List<Employee>{
new Employee{
ID = 1,
Name = "Allan",
JoiningDate = DateTime.Parse(DateTime.Today.ToString()),
Age = 23
},
new Employee{
ID = 2,
Name = "Carson",
JoiningDate = DateTime.Parse(DateTime.Today.ToString()),
Age = 45
},
new Employee{
ID = 3,
Name = "Carson",
JoiningDate = DateTime.Parse(DateTime.Today.ToString()),
Age = 37
},
new Employee{
ID = 4,
Name = "Laura",
JoiningDate = DateTime.Parse(DateTime.Today.ToString()),
Age = 26
},
};
}
第4步 - 更新索引操作方法,如下面的程式碼所示。
// GET: Employee
public ActionResult Index()
{
var employees = from e in GetEmployeeList()
orderby e.ID
select e;
return View(employees);
}
第5步 - 執行這個應用程式,開啟瀏覽器存取URL:http://localhost:64466/employee
,將看到以下輸出。
正如在上面的截圖所看到的,有一個錯誤,這個錯誤實際上是相當具有描述性的,告訴我們它找不到索引檢視。
第6步 - 因此,要新增一個檢視,右鍵單擊Index
動作方法,並選擇新增檢視。它將顯示「新增檢視」對話方塊,並將新增預設名稱。參考下圖 -
第7步 - 從模板下拉選單中選擇列表,在模型類下拉選單中選擇Employee,並取消選中「使用佈局頁面」核取方塊,然後單擊「新增」 按鈕。
它會在這個檢視中自動新增一些預設的程式碼。如下所示 -
@model IEnumerable<MVCSimpleApp.Models.Employee>
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.JoiningDate)
</th>
<th>
@Html.DisplayNameFor(model => model.Age)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.JoiningDate)
</td>
<td>
@Html.DisplayFor(modelItem => item.Age)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID })
</td>
</tr>
}
</table>
</body>
</html>
第8步 - 執行這個應用程式,將看到以下輸出。