我正在尝试创建一个管理部分来管理在vs 2010中使用.net MVC3的用户。我已经想出了如何分别创建和编辑新用户和角色。但是,当我创建或编辑新用户时,我正在努力弄清楚如何添加角色。就我而言:
在我的模型中:
public class UserModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
public string Email { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
public class IndexViewModel
{
public IEnumerable<UserModel> Users { get; set; }
public IEnumerable<string> Roles { get; set; }
}
在我的控制器中
public ActionResult Index()
{
return View(
new IndexViewModel
{
Users = Membership.GetAllUsers().Cast<MembershipUser>().Select(x => new UserModel
{
UserName = x.UserName,
Email = x.Email,
}),
Roles = Roles.GetAllRoles()
});
}
在视图中:
@model IEnumerable<BBmvc.Areas.Tools.Models.IndexViewModel>
//...
@foreach (var item in Model) {
foreach (var user in item.Users)
{
<tr>
<td>
@Html.DisplayFor(modelItem => user.UserName)
</td>
<td>
@Html.DisplayFor(modelItem => user.Email)
</td>
<td>
@Html.DisplayFor(modelItem => user.Password)
</td>
<td>
@Html.DisplayFor(modelItem => user.ConfirmPassword)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=user.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=user.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=user.PrimaryKey */ })
</td>
</tr>
}
}
我看到了这个错误:
传递到字典中的模型项是类型的 'BBmvc.Areas.Tools.Models.IndexViewModel',但是这本字典 需要'System.Collections.Generic.IEnumerable
类型的模型项
我很困惑。我是在正确的轨道上吗?现在我只是想让角色显示在页面上......最终我需要为每个用户过滤它们,以便只列出用户所在的角色。
修改 下面的答案修复了我遇到的viewmodel问题。为每个用户显示角色的最终解决方案并非涉及到这一点。我在UserModel中添加了一个列表:
public IEnumerable<string> UserRoles { get; set; }
在控制器中填写:
public ActionResult Index2()
{
var model = Membership.GetAllUsers().Cast<MembershipUser>().Select(x => new UserModel
{
UserName = x.UserName,
Email = x.Email,
UserRoles = Roles.GetRolesForUser(x.UserName)
});
return View(model);
}
然后在视图中显示:
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.UserName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Email)
</td>
<td>
@foreach (var role in item.UserRoles)
{
@role
}
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>
</tr>
}
感谢大家!
答案 0 :(得分:0)
您需要更改@model
来自:@model IEnumerable<BBmvc.Areas.Tools.Models.IndexViewModel>
收件人:@model BBmvc.Areas.Tools.Models.IndexViewModel
。
控制器中的代码只返回IndexViewModel
的{{1}}实例,而不是IEnumerable
的{{1}}(换言之,集合/列表/数组/其他)。< / p>
答案 1 :(得分:0)
当您只返回1个IndexViewModel
类型的对象时,您需要将@model
更改为@model BBmvc.Areas.Tools.Models.IndexViewModel
。
由于此单个对象包含用户和角色列表...您需要更改视图:
@model BBmvc.Areas.Tools.Models.IndexViewModel
//...
@foreach (var user in Model.Users)
{
<tr>
<td>
@Html.DisplayFor(modelItem => user.UserName)
</td>
<td>
@Html.DisplayFor(modelItem => user.Email)
</td>
<td>
@Html.DisplayFor(modelItem => user.Password)
</td>
<td>
@foreach (var role in Model.Roles.Where(x => x.idUser == user.idUser))
{
<span>@role.Name</span> |
}
</td>
<td>
@Html.ActionLink("ViewRoles", "View Roles", new { id=user.PrimaryKey }) |
@Html.ActionLink("Edit", "Edit", new { id=user.PrimaryKey }) |
@Html.ActionLink("Details", "Details", new { id=user.PrimaryKey }) |
@Html.ActionLink("Delete", "Delete", new { id=user.PrimaryKey })
</td>
</tr>
}
这样,您就可以拥有该用户的角色,并点击“查看角色”或“设置角色”(使用最适合您的链接文字)问题)你可以列出该用户的角色。在那里,您可以为所选用户添加/编辑/删除角色。