我有一个看起来像这样的模型:
public class EditUserViewModel
{
public EditUserViewModel()
{
}
public EditUserDataModel User { get; set; }
}
使用如下所示的支持对象:
public class EditUserDataModel
{
public EditUserDataModel()
{
Roles = new List<UserRoleListDataModel>();
}
[DisplayName("First Name")]
public string FirstName { get; set; }
[DisplayName("Last Name")]
public string LastName { get; set; }
[DisplayName("Full Name")]
public string FullName { get { return FirstName + " " + LastName; } }
public List<UserRoleListDataModel> Roles { get; set; }
}
UserRoleListDataModel如下所示:
public class UserRoleListDataModel
{
public Guid Id { get; set; }
public string RoleName { get; set; }
public bool UserIsInRole { get; set; }
}
然后,在我的Razor文件中,我正在使用整个事情:
@foreach (var role in Model.User.Roles)
{
<tr>
<td>@role.RoleName</td>
<td>@Html.CheckBoxFor(x=>role.UserIsInRole)</td>
</tr>
}
我遇到的问题是,当我提交表单并点击我的控制器操作时,我的新模型上没有填充角色列表。
以下是控制器上的提交操作:
public ActionResult EditUser(EditUserViewModel model) // model.User.Roles is empty.
{
// Do some stuff...
return RedirectToAction("UserList");
}
有人有任何建议吗?
答案 0 :(得分:10)
@for (int i=0;i < Model.User.Roles.Count;i++)
{
@Html.Hidden("User.Roles.Index", i)
@Html.HiddenFor(x => x.User.Roles[i].RoleName)
<tr>
<td>@Html.DisplayFor(x => Model.User.Roles[i].RoleName)</td>
<td>@Html.CheckBoxFor(x => Model.User.Roles[i].UserIsInRole)</td>
</tr>
}
答案 1 :(得分:6)
在你的剃须刀中试试这个:
@for (int i=0;i < Model.User.Roles.Count;i++)
{
@Html.Hidden("User.Roles.Index",i);
<tr>
<td>@role.RoleName</td>
<td>@Html.CheckBox("User.Roles[" + i + "].UserIsInRole",role.UserIsInRole)</td>
</tr>
}
这有点手动,但应该做好。