我有以下视图模型
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:拥有键“ CategoryID”的ViewData项的类型为“ System.Int32”,但必须类型为“ IEnumerable <SelectListItem>”。
使用@Html.DropDownList()
方法会发生相同的错误,如果我使用ViewBag
或传递了SelectList,则会发生相同的错误ViewData
。