我正在尝试编写一个自定义模型绑定器,但是我很难想出如何绑定复杂的复合对象。
这是我要绑定的类:
public class Fund
{
public int Id { get; set; }
public string Name { get; set; }
public List<FundAllocation> FundAllocations { get; set; }
}
这就是我编写自定义活页夹的尝试:
public class FundModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
throw new NotImplementedException();
}
public object GetValue(ControllerContext controllerContext, string modelName, Type modelType, ModelStateDictionary modelState)
{
var fund = new Fund();
fund.Id = int.Parse(controllerContext.HttpContext.Request.Form["Id"]);
fund.Name = controllerContext.HttpContext.Request.Form["Name"];
//i don't know how to bind to the list property :(
fund.FundItems[0].Catalogue.Id = controllerContext.HttpContext.Request.Form["FundItem.Catalogue.Id"];
return fund;
}
}
任何想法
感谢 贝
答案 0 :(得分:8)
您真的需要在这里实现自定义ModelBinder吗?默认绑定器可以执行您需要的操作(因为它可以填充集合和复杂对象):
让我们说你的控制器动作如下:
public ActionResult SomeAction(Fund fund)
{
//do some stuff
return View();
}
你的HTML包含这个:
<input type="text" name="fund.Id" value="1" />
<input type="text" name="fund.Name" value="SomeName" />
<input type="text" name="fund.FundAllocations.Index" value="0" />
<input type="text" name="fund.FundAllocations[0].SomeProperty" value="abc" />
<input type="text" name="fund.FundAllocations.Index" value="1" />
<input type="text" name="fund.FundAllocations[1].SomeProperty" value="xyz" />
默认模型绑定器应该使用FundAllocations列表中的2个项目初始化您的基金对象(我不知道您的FundAllocation类是什么样的,所以我编写了一个属性“SomeProperty”)。只要确保包含那些“fund.FundAllocations.Index”元素(默认绑定器看起来是为了它自己的用途),当我试图让它工作时,这就得到了我。
答案 1 :(得分:3)
我最近在这同样的事情上花了太多钱!
如果没有看到您的HTML表单,我猜它只是从多选列表中返回选择结果?如果是这样,你的表单只返回一堆整数,而不是返回你的水合FundAllocations
对象。如果你想这样做,那么在自定义的ModelBinder中,你需要自己进行查找并自己保护对象。
类似的东西:
fund.FundAllocations =
repository.Where(f =>
controllerContext.HttpContext.Request.Form["FundItem.Catalogue.Id"].Contains(f.Id.ToString());
当然,我的LINQ仅作为示例,您显然可以随意检索您想要的数据。顺便说一句,我知道它没有回答你的问题,但经过多次讨论后,我已经决定对于复杂的对象,我最好使用ViewModel并将默认的ModelBinder绑定到那个然后,如果我需要,补充水合物代表我的实体的模型。我遇到了很多问题,这使得这个问题成为最佳选择,我现在不会厌烦你,但如果你愿意,我很乐意推断。
最新的Herding Code podcast对此进行了很好的讨论,K Scott Allen's Putting the M in MVC blog posts。