我很好奇在回发到包含部分View的部分的表单中使用多个强类型部分的方法是否是正确的MVC处理方法。主视图与以下模型绑定,为简洁起见省略了其他几个属性和数据注释:
public class AccountSetup : ViewModelBase
{
public bool TermsAccepted { get; set; }
public UserLogin UserLogin { get; set; }
public SecurityQuestions SecurityQuestions { get; set; }
}
public class UserLogin
{
public string LoginId { get; set; }
public string Password { get; set; }
}
主Register.cshtml视图的标记并不完全在下面,但这是部分在下面的使用方式:
@model Models.Account.AccountSetup
. . . <pretty markup> . . .
@using (Html.BeginForm("Register", "Account", FormMethod.Post))
{
. . . <other fields and pretty markup> . . .
@Html.Partial("_LoginAccount", Model.UserLogin)
@Html.Partial("_SecurityQuestions", Model.SecurityQuestions)
<input id="btnContinue" type="image" />
}
仅供参考,_LoginAccount的部分视图在下方,删除了多余的标记。
@model Models.Account.UserLogin
<div>
@Html.TextBoxFor(mod => mod.LoginId)
@Html.PasswordFor(mod => mod.Password)
</div>
问题出在注册表的帖子上,AccountSetup属性为null,包含在partials中。但是,如果我将单个模型添加到方法签名中,则会填充它们。我意识到这是因为当字段呈现时ID被更改,因此它们看起来像注册视图的_LoginId,因此它不会映射回AccountSetup模型。
不会为accountSetup.UserLogin或accountSetup.SecurityQuestions获取值
[HttpPost]
public ActionResult Register(AccountSetup accountSetup)
{
为userLogin和securityQuestions
获取值 [HttpPost]
public ActionResult Register(AccountSetup accountSetup, UserLogin userLogin, SecurityQuestions securityQuestions)
{
问题是如何将这些映射回包含的Views(AccountSetup)模型的属性,而不必将部分模型添加到方法签名中以获取值?这是在主视图中使用强类型部分视图的不好方法吗?
答案 0 :(得分:0)
这是因为您的部分视图是强类型的。删除Partials中的@model声明,并访问像这样的Model属性
@Html.Partial("_LoginAccount")
然后在你的部分
<div>
@Html.TextBoxFor(mod => mod.UserLogin.LoginId)
@Html.PasswordFor(mod => mod.UserLogin.Password)
</div>
答案 1 :(得分:0)
所有部分视图都应使用相同的视图模型进行强类型化(在您的情况下为AccountSetup):
@model Models.Account.AccountSetup
@Html.TextBoxFor(mod => mod.UserLogin.LoginId)
@Html.PasswordFor(mod => mod.UserLogin.Password)
然后:
@Html.Partial("_LoginAccount", Model)