0

描述

我有一个付款页面,其中包含用于输入银行帐户信息的表格。我已将银行帐户信息封装到模型/编辑器模板中。页面本身有自己的视图模型,它恰好包含要传递给编辑器的 BankAccount 属性。

[[查看模型]]

public class PaymentPageModel { 
    public SomeProperty1 { get; set; }
    public SomeProperty2 { get; set; }
    public BankAccount BankAccount { get; set; }
    ...
}

public class BankAccount { 
    public int BankAccountTypeID { get; set; }
    public string BankName { get; set; }
    public string ABACode { get; set; }
    public string AccountNumber { get; set;}
    public IEnumerable<SelectListItem> BankAccountTypes {
        get { ... // Constructs the list }
    }
}

[[支付页面 HTML]]

<% using (Html.BeginForm()) { %>
<%: Html.EditorFor(m => m.BankAccount) %>
    ... // Other miscellaneous stuff not related to the actual BankAccount
<% } %>

[[编辑器模板]

...
<%: Html.DropDownListFor(m => m.BankAccountTypeID, Model.BankAccountTypes) %>
...

问题

最初,当我将支付页面直接强输入到 BankAccount 模型时,这非常有效。下拉列表已正确填充,并且正在选择模型中的正确值。

我最近修改了页面,将其强类型化为 PaymentPageModel,其中包含作为属性的 BankAccount 模型。HTML 未被修改。现在的结果是,编辑器模板中的所有 HTML 值都被正确填充,除了 DropDownList。它正在从 BankAccountTypes 选择列表中正确绑定值列表,但未绑定所选值。我已经检查以确保它应该绑定到的值通过在 DropDownList 旁边输出它来正确设置。

这让我发疯,并且让我真正质疑模型绑定和 HTML 助手的可靠性,特别是如果我无法将复杂的视图模型与编辑器模板结合起来来封装演示/功能。

非常感谢任何建议。

4

1 回答 1

0

如果您PaymentPageModel在主视图中强输入了编辑器模板,而不是:

<%: Html.EditorFor(m => m.BankAccount) %>

你可以试试:

<%: Html.EditorForModel() %>

并在您的编辑器模板中:

<%: Html.DropDownListFor(m => m.BankAccount.BankAccountTypeID, 
    Model.BankAccount.BankAccountTypes) %>
于 2010-10-20T16:34:05.823 回答