当在嵌套在模型中的对象中定义属性时,CheckBoxFor是否没有边界?
这是一个例子。我有一个SearchOptions
模型,其中包含List<Star>
属性。每个Star
都有一个数字,一个名称和一个bool
属性,应将其限制为:
public class SearchOptions
{
public SearchOptions()
{
// Default values
Stars = new List<Star>()
{
new Star() {Number=1, Name=Resources.Home.Index.Star1,
IsSelected=false},
new Star() {Number=2, Name=Resources.Home.Index.Star2,
IsSelected=false},
new Star() {Number=3, Name=Resources.Home.Index.Star3,
IsSelected=true},
new Star() {Number=4, Name=Resources.Home.Index.Star4,
IsSelected=true},
new Star() {Number=5, Name=Resources.Home.Index.Star5,
IsSelected=true},
};
}
public List<Star> Stars { get; set; }
}
在我的(
SearchOptions
的)强类型 View 中,我遍历了Stars
属性:@using (Html.BeginForm("Do", "Home"))
{
<fieldset>
<legend>@MVC3TestApplication.Resources.Home.Index.Search</legend>
@{
foreach (Star s in Model.Stars)
{
@Html.CheckBoxFor(m => s.IsSelected)
<label>@s.Name</label>
}}
</fieldset>
<input type=submit value="Invia" />
}
Controller 的(相关部分)是:
public ActionResult SearchOptions()
{
return View(new SearchOptions());
}
[HttpPost]
public ActionResult Do(SearchOptions s)
{
// Do some stuff
return View("SearchOptions", s);
}
最佳答案
这是因为您如何访问CheckBoxFor
表达式中的属性。
@for (int i = 0; i < Model.Stars.Count(); i++) {
@Html.CheckBoxFor(m => m.Stars[i].IsSelected)
<label>@Model.Stars[i].Name</label>
}
这应该为您工作。
这是不同方法的输出:
//using the for loop
<input id="Stars_2__IsSelected" name="Stars[2].IsSelected" type="checkbox" value="true" />
//using the foreach
<input checked="checked" id="s_IsSelected" name="s.IsSelected" type="checkbox" value="true" />
您会注意到,在进行模型绑定(bind)时,for foreach不包含与其匹配的正确名称。