我有两个视图模型,一个聚合另一个的集合:
class Parent
{
public string Key { get; set; }
public IList<Child> Children { get; set; }
}
class Child
{
public string Key { get; set; }
[Required, Remote("VerifyNameUnique", "Parent", AdditionalFields = "Key", ErrorMessage = "The name must be unique.")]
public string Name { get; set; }
}
我有一个控制器动作
public ActionResult VerifyNameUnique(string key, string name)
{
var result = // ... verify uniqueness
return Json(result, JsonRequestBehavior.AllowGet);
}
观点:
@model Parent
@Html.HiddenFor(m => m.Key)
@for(var i=0; i<Model.Children; i++)
{
@Html.HiddenFor (m => m.Children[i].Key)
@Html.LabelFor(m => m.Children[i].Name)
@Html.EditorFor (m => m.Children[i].Name)
}
当我的父/子编辑器模板调用操作以验证任何名称字段时,它会发送一个查询字符串?Children[0].Key=abc&Children[0].Name=Fred
,其中0
是刚编辑的子项的索引i
。
由于前缀,它不会绑定到VerifyNameUnique
的参数。我尝试使用BindAttribute
设置前缀,但前缀因i
的值而异。
编写自定义模型绑定器是一种选择,但对于这个简单的场景,现在看起来似乎有点过头了。我能做些什么更好的事吗?
答案 0 :(得分:1)
这根本不受支持。因此,您必须编写自定义模型绑定器或自定义远程验证属性。这就是说,你想要实现的可能不是一个好主意,因为如果用户点击提交按钮,将为集合中的每个字段发送一个AJAX请求,效率不高。我可能会直接在父级的collection属性上使用自定义远程验证字段,以便通过一次往返服务器来验证所有内容。