我有一个名为Product
的类public class Product
{
public virtual int Id { get; set; }
public virtual Category Category { get; set; }
}
请告诉我如何使用UpdateModel方法更新Category。
您可以在下面的视图
中找到类别代码答案 0 :(得分:1)
如果您正在填充ViewData["categoryList"]
,请执行以下操作:
ViewData["categoryList"] = categories.Select(
category => new SelectListItem {
Text = category.Title,
Value = category.Id.ToString()
}).ToList();
然后在您的POST操作中,您只需更新Product.Category属性:
int categoryId;
int.Parse(Request.Form["Category"], out categoryId);
product.Category = categories.First(x => x.Id == categoryId);
或使用UpdateModel()创建自定义ModelBinder进行更新:
public class CustomModelBinder : DefaultModelBinder
{
protected override void BindProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor)
{
if (String.Compare(propertyDescriptor.Name, "Category", true) == 0)
{
int categoryId = (int)bindingContext.ValueProvider["tags"].RawValue;
var product = bindingContext.Model as Product;
product.Category = categories.First(x => x.Id == categoryId);
return;
}
base.BindProperty(controllerContext, bindingContext, propertyDescriptor);
}
}
答案 1 :(得分:1)
我找到了一种更简单的方法:
<%= Html.DropDownList("Category.Id", (System.Web.Mvc.SelectList) ViewData["categoryList"])%>