Tôi có mô hình xem sau
public class ProjectVM
{
....
[Display(Name = "Category")]
[Required(ErrorMessage = "Please select a category")]
public int CategoryID { get; set; }
public IEnumerable<SelectListItem> CategoryList { get; set; }
....
}
và phương pháp điều khiển sau để tạo một Dự án mới và gán một 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
}
và trong khung cảnh
@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" />
}
Chế độ xem hiển thị chính xác nhưng khi gửi biểu mẫu, tôi nhận được thông báo lỗi sau
InvalidOperationException: Mục ViewData có khóa 'CategoryID' thuộc loại 'System.Int32' nhưng phải thuộc loại 'IEnumerable <SelectListItem>'.
Lỗi tương tự cũng xảy ra khi sử dụng @Html.DropDownList()
phương pháp và nếu tôi chuyển Danh sách chọn bằng cách sử dụng ViewBag
hoặc ViewData
.