2016-09-15 136 views
2

问题是,模型绑定不绑定ViewModel的其中一个属性。ASP.NET MVC 4模型绑定问题

我有一个ViewMode,HomeIndexViewModel。 其中一个属性,ExcludeClientsWithoutAddress未在控制器中绑定。

的Fiddler显示GET请求本身(无ExcludeClientsWithoutAddress

GET /主页/ searchByClient?分贝= dev的& fileNumber = &的firstName = XXX & includeContacts =真HTTP/1.1

对于某些原因,其他属性(FileNumber,FirstName,LastName,IncludeContacts和File)正确绑定。

enter image description here

缺少什么我在这里?

namespace CertifiedMail.Web.Mvc4.OneOffs.Models 
{ 
    public class HomeIndexViewModel 
    { 
     [DisplayName("File #")] 
     public string FileNumber { get; set; } 

     [DisplayName("First Name")] 
     public string FirstName { get; set; } 

     [DisplayName("Last Name")] 
     public string LastName { get; set; } 

     [DisplayName("Include Contact")] 
     public bool IncludeContacts { get; set; } 

     [DisplayName("Exclude Clients Without Address")] 
     public bool ExcludeClientsWithoutAddress { get; set; } 

     public HttpPostedFileBase File { get; set; } 
    } 
} 

在控制器,

[System.Web.Mvc.HttpGet] 
public string SearchByClient([FromUri]HomeIndexViewModel model) 
{ 
    IEnumerable<SearchResult> searchResults = new List<SearchResult>(); 

    SearchByArgs args = BuildSearchByArg(model); 

    if (string.IsNullOrWhiteSpace(model.FileNumber)) 
    { 
     if (!string.IsNullOrWhiteSpace(model.FirstName) || !string.IsNullOrWhiteSpace(model.LastName)) 
      searchResults = ClientSearchDataAccess.SearchByClientName(args); 
    } 
    else 
     searchResults = ClientSearchDataAccess.SearchByClientNumber(args); 

    return JsonConverter.SerializeSearchResults(searchResults); 
} 

这里是观。

<div class="col-sm-5 searchPanel"> 
    <div class="panel panel-default glowGridPanel"> 
     <div class="panel-body searchPanelBody"> 
      <div class="row"> 
       @using (Html.BeginForm("SearchByClient", "Home", 
        new { db = @Request.QueryString["db"] }, 
        FormMethod.Get, 
        new { id = "searchByClientForm", @class = "form-horizontal" })) 
       { 
        <fieldset> 
         <legend> 
          Search by Client 
          <span class="glyphicon glyphicon-user" aria-hidden="true"></span> 
         </legend> 

         @{ 
          var labelAttributes = new { @class = "col-sm-4 control-label" }; 
         } 

         <div class="form-group"> 
          @Html.LabelFor(m => m.FileNumber, labelAttributes) 
          <div class="col-sm-8"> 
           @Html.TextBoxFor(m => m.FileNumber, new { @class = "form-control input-sm", ng_model = "fileNumber" }) 
          </div> 
         </div> 

         <div class="form-group"> 
          @Html.LabelFor(m => m.FirstName, labelAttributes) 
          <div class="col-sm-8"> 
           @Html.TextBoxFor(m => m.FirstName, new { @class = "form-control input-sm", ng_model = "firstName" }) 
          </div> 
         </div> 

         <div class="form-group"> 
          @Html.LabelFor(m => m.LastName, labelAttributes) 
          <div class="col-sm-8"> 
           @Html.TextBoxFor(m => m.LastName, new { @class = "form-control input-sm", ng_model = "lastName" }) 
          </div> 
         </div> 

         <div class="form-group"> 
          <div class="col-sm-12 col-sm-offset-3"> 
           <div class="checkbox"> 
            Include contacts in search result? 
            @Html.CheckBoxFor(m => m.IncludeContacts, new { id = "includeContactsCheckBox", ng_model = "includeContacts" }) 
           </div> 
          </div> 
         </div> 

         <div class="form-group"> 
          <div class="col-sm-12 col-sm-offset-3"> 
           Exclude Clients without Address? 
           <div class="checkbox"> 
            @Html.CheckBoxFor(m => m.ExcludeClientsWithoutAddress, 
             new { id = "excludeClientsWithoutAddressCheckBox", ng_model = "excludeClientsWithoutAddress" }) 
           </div> 
          </div> 
         </div> 

         <button type="button" class="btn btn-primary pull-right submitButton" 
           ng-click="addSearchResultToGrid()" 
           ng-disabled="loadingSearch"> 
          Search by Client 
          <span class="glyphicon glyphicon-search" aria-hidden="true"></span> 
          <div id="loadingSearch" ng-show="loadingSearch"></div> 
         </button> 
        </fieldset> 
          } 
      </div> 

      <div class="row strike"> 
       <h3> 
        <span class="label label-default"> 
         <span class="glyphicon glyphicon-minus" aria-hidden="true"></span> 
         OR 
         <span class="glyphicon glyphicon-minus" aria-hidden="true"></span> 
        </span> 
       </h3> 
      </div> 

      <div class="row"> 
       @using (Html.BeginForm("Upload", "Home", 
         new { db = @Request.QueryString["db"] }, 
         FormMethod.Post, new { id = "uploadFileForm", enctype = "multipart/form-data" })) 
       { 
        <fieldset> 
         <legend>Search by Uploading File</legend> 

         <div class="input-group"> 
          <input type="file" class="form-control" name="file" id="file" /> 
          <span class="input-group-btn"> 
           <button class="btn btn-primary" type="submit"> 
            Upload File 
            <span class="glyphicon glyphicon-arrow-up" aria-hidden="true"></span> 
           </button> 
          </span> 
         </div> 
        </fieldset> 
       } 
      </div> 
     </div> 
    </div> 
</div> 
+1

Fiddler显示浏览器发出的内容,它不会发送你的'ExcludeClientsWithoutAddress'属性。那么你的Angular代码不知何故放弃了这个领域? – Jasen

+0

谢谢@Jasen。这就是它!我忘了更新角度服务来接受这个论点!你会添加你的评论作为答案,我可以将它标记为答案吗? – Sung

回答

1

您的Fiddler请求显示从浏览器发出的内容。它不会发送您的ExcludeClientsWithoutAddress属性。

由于此属性未标记为可空bool?它在绑定中被分配一个默认值。

您有这些输入为ng_model,这表明您的Angular代码没有发送该字段。

+0

你在这花了半天后才救了我。我很欣赏答案〜 – Sung