ฉันมีโมเดลมุมมองต่อไปนี้
public class ProjectVM
{
....
[Display(Name = "Category")]
[Required(ErrorMessage = "Please select a category")]
public int CategoryID { get; set; }
public IEnumerable<SelectListItem> CategoryList { get; set; }
....
}
และวิธีการควบคุมต่อไปนี้เพื่อสร้างโครงการใหม่และกำหนดไฟล์ Category
public ActionResult Create()
{
ProjectVM model = new ProjectVM
{
CategoryList = new SelectList(db.Categories, "ID", "Name")
}
return View(model);
}
public ActionResult Create(ProjectVM model)
{
if (!ModelState.IsValid)
{
return View(model);
}
// Save and redirect
}
และในมุมมอง
@model ProjectVM
....
@using (Html.BeginForm())
{
....
@Html.LabelFor(m => m.CategoryID)
@Html.DropDownListFor(m => m.CategoryID, Model.CategoryList, "-Please select-")
@Html.ValidationMessageFor(m => m.CategoryID)
....
<input type="submit" value="Create" />
}
มุมมองแสดงอย่างถูกต้อง แต่เมื่อส่งแบบฟอร์มฉันได้รับข้อความแสดงข้อผิดพลาดต่อไปนี้
InvalidOperationException: รายการ ViewData ที่มีคีย์ 'CategoryID' เป็นประเภท 'System.Int32' แต่ต้องเป็นประเภท 'IEnumerable <SelectListItem>'
ข้อผิดพลาดเดียวกันนี้เกิดขึ้นโดยใช้@Html.DropDownList()
วิธีนี้และถ้าฉันผ่าน SelectList โดยใช้ViewBag
หรือViewData
.