我正在尝试将 JSON 对象列表传递给控制器方法,并自动在控制器中定义和填充正确的类型。
JSON 发布到控制器:
{ Type : 'Image', ImageName : 'blah.jpg' },
{ Type : 'Text', Text: 'Hello', Font: 'Some Font' }..
控制器:
public ActionResult SaveCOntent(IList<Item> content)
所以我得到的印象是我需要使用 ModelBinding 将元素转换为正确的类型。我试过关注另一个建议的帖子(http://stackoverflow.com/questions/6484972/viewmodel-with-listbaseclass-and-editor-templates),它在某种程度上起作用..我得到了正确“类型”的列表' 但所有属性都设置为默认值且未填充。
我尝试使用以下内容扩展 DefaultModelBinder:
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var typeName = (string)bindingContext.ValueProvider.GetValue(bindingContext.ModelName + ".ItemTypeName").ConvertTo(typeof(string));
if (typeName == "LINK")
{
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => new Link(), typeof(Link));
base.BindModel(controllerContext, bindingContext);
}
else if (typeName == "IMAGE")
{
//bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => new Image(), typeof(Image));
//base.BindModel(controllerContext, bindingContext);
return null;
}
return base.BindModel(controllerContext, bindingContext);
}
现在这适用于第一种类型(链接),但是一旦我尝试对 Image 执行相同操作,我就会收到一条错误消息
已添加具有相同密钥的项目。