我有一个UserManager页面,管理员可以从同一页面获取当前已注册的所有帐户,删除帐户,更新帐户以及注册新帐户。
我有一个控制器,可以在列表中重新计算db.users中的所有用户。
public ActionResult UserManager()
{
if (User.IsInRole("1"))
{
var db = new ReviewLogsTestDBEntities();
return View(db.Users.ToList());
}
else
{
return RedirectToAction("Index", "Home");
}
}
工作正常,我有删除工作 当我想在同一页面上获得注册表单时,问题就出现了。
这就是我现在的观点:
@model IEnumerable<ReviewLogs.User>
@{
ViewBag.Title = "UserManager";
}
<h2>UserManager</h2>
<div id="userDetails">
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.UserName);
</th>
<th>
@Html.DisplayNameFor(model => model.Role)
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.UserName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Role)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id = item.ID }) |
@Html.ActionLink("Delete", "Del", new { id = item.ID}, new { onclick = "return confirm('Are you sure you wish to delete this article?')"});
</td>
</tr>
}
</table>
</div>
如您所见,有一个模型:
@model IEnumerable<ReviewLogs.User>
但我希望我的表单使用自己的RegisterModel,它需要填写必需的字段,正则表达式等。当用户按下提交时,将重新加载UserManager页面,现在显示新添加的用户。
我以为我可以创建一个局部视图:
@model ReviewLogs.Models.RegisterModel
@{
ViewBag.Title = "Register";
ViewBag.SubHead = "Register";
}
@Html.ValidationSummary(true, "Creation of new Account has failed please check your fields.")
<p id="success">@ViewBag.SuccessMessage</p>
<br />
@using (Html.BeginForm())
{
//The Registration Page the user sees
//The userName label and textbox
<div class="inputFields">
@Html.LabelFor(model => model.userName)
@Html.TextBoxFor(model => model.userName)
@Html.ValidationMessageFor(model => model.userName)
</div>
//The accountType label and radioButton
<div class="radioButtonAccountType">
@Html.LabelFor(model => model.accountType)
@Html.RadioButtonFor(model => model.accountType, "1")<span class="adminLabel">Admin</span>
@Html.RadioButtonFor(model => model.accountType, "2")<span class="userLabel">User</span>
@Html.ValidationMessageFor(model => model.accountType)
</div>
<input class="submitButton" type="submit" value="Create User" style="margin-left:140px;margin-bottom: 20px;" />
}
在我的UserManager视图中,我添加了:
@Html.Partial("Register");
但后来我收到了这个错误:
传递到字典中的模型项的类型是&#39; System.Collections.Generic.List`1 [ReviewLogs.User]&#39;,但是这个字典需要一个类型为&#39; ReviewLogs的模型项.Models.RegisterModel&#39;
我怎样才能通过这个以便我可以发布我的注册?
答案 0 :(得分:0)
查找接受模型的@Html.Partial
方法重载,并通过以下方式调用它:
@Html.Partial("Register", Model.RegisterModel)
为了实现这一点,最好的办法是创建一个传递给UserManager视图的新模型。此UserManagerModel将具有两个属性:IEnumerable<ReviewLogs.User>
,由UserManagerView本身使用,以及RegisterModel
,您将传递到部分视图。
答案 1 :(得分:0)
在视图中新建一个寄存器模型副本并将其传递给partial:
@Html.Partial("Register", new Namespace.To.RegisterModel())
只需确保将表单注册到单独的操作即可。你应该不尝试让这一个动作处理多种不同类型的帖子。您可以在表单的隐藏字段中传递返回URL(基本上只是Request.RawUrl
),然后如果存在此值,则可以使用它重定向回同一页面。例如:
@Html.Hidden("returnUrl", Request.RawUrl)
然后,
[HttpPost]
public ActionResult Register(RegisterModel model, string returnUrl)
{
// do the register thing
if (!String.IsNullOrWhiteSpace(returnUrl))
{
return Redirect(returnUrl);
}
return RedirectToAction("Index"); // or whatever should be default
}