2012-10-07 28 views
3

我在一个View上有两种形式在一个Controller中执行两个单独的Action方法。MVC 4当我尝试提交表单时,Model是空的

第一种形式(frmRefresh)负责获取数据并将其显示在窗体上,以便用户可以选择某些复选框。一旦提交,数据就会在ViewModel中正确返回并正确显示在表单上。模板的11条记录和保证人的3条记录显示为表单上的复选框。

第二种形式(frmProcess)负责获取表单上的数据(从上面的第一个帖子回来)。用户在屏幕上进行选择并根据Controller中的某些逻辑进行处理。我在模型中有List对象,并且不要因为复杂的对象而使用FormCollection来处理数据。基本上,它们是复选框的集合。我真的需要使用应该在模型中提交的数据,因为在Controller中处理该数据。

提交第二个表单时,我意识到,如果我将它们放在隐藏字段中(因为它们处于单独的表单中),那么我将无法使用这个ddd,这很好。当我提交第二个表单(frmProcess)时,为什么模型视图活页夹没有从表单中获取数据,将其放入模型中并将其提交给我的GeneratePDF动作方法。?第一,我真的需要一些帮助来理解为什么会发生这种情况,第二,我真的需要一个解决方案,它将我的模型数据从表单传递到动作方法并对其进行处理。正如你可以在Controller中看到的那样,在代码的最后,我列举了ViewModel中的模板来处理数据。

请大家帮忙,因为我在工作时完全停留在这个位置,他们依赖于我。我只是不明白为什么模型联编程序不会将表单上的值提交给操作方法进行处理。看起来我错过了一些东西,允许数据在提交后回到模型中。

下面是我的相关代码: ViedwModel

public partial class ViewModelTemplate_Guarantors 
    { 
     public int SelectedTemplateId { get; set; } 
     public IEnumerable<PDFTemplate> Templates { get; set; } 

     public int SelectedGuarantorId { get; set; } 
     public IEnumerable<tGuarantor> Guarantors { get; set; } 

     public string LoanId { get; set; } 
     public string SelectedDeptText { get; set; } 
     public string SelectedDeptValue { get; set; } 
     public string LoanType { get; set; } 

     public bool ShowTemps { get; set; } 
     public string Error { get; set; } 
     public string ErrorT { get; set; } 
     public string ErrorG { get; set; } 
     public bool ShowGeneratePDFBtn { get; set; } 
    } 

查看

@model PDFConverterModel.ViewModels.ViewModelTemplate_Guarantors 
@{ 
    ViewBag.Title = "BHG :: PDF Generator"; 
} 
<h2>@ViewBag.Message</h2> 

<div> 

    <table style="width: 1000px"> 
     <tr> 
      <td colspan="5"> 
       <img alt="BHG Logo" src="~/Images/logo.gif" /> 
      </td> 
     </tr> 

     @using (Html.BeginForm("Refresh", "Home", FormMethod.Post, new { id = "frmRefresh" }))  {    <tr> 
       <td> 
       @*@(Html.Kendo().NumericTextBox<int>() 
         .Name("txtLoanID") 
         .Placeholder("Enter numeric value") 
       )*@ 

       @Html.LabelFor(model => model.LoanId) 
       @Html.TextBoxFor(model => model.LoanId) 
       @Html.ValidationMessageFor(model => model.LoanId) 
      </tr> 
      <tr> 
       <td>@Html.LabelFor(model => model.LoanType) 
        @Html.TextBox("SBA", "SBA") 
        @Html.ValidationMessageFor(model => model.LoanType) 
        @*@Html.TextBoxFor(model => model.LoanType)*@ 
       </td> 
       <td> 
        <label for="ddlDept">Department:</label> 
        @(Html.Kendo().DropDownListFor(model => model.SelectedDeptText) 
          .Name("ddlDept") 
          .DataTextField("DepartmentName") 
          .DataValueField("DepartmentID") 
          .Events(e => e.Change("Refresh")) 
          .DataSource(source => 
          { 
           source.Read(read => 
           { 
            read.Action("GetDepartments", "Home"); 
           }); 
          }) 
        ) 
        @Html.ValidationMessageFor(model => model.SelectedDeptText) 
       </td> 
      </tr> 
      <tr> 
       <td colspan="3"> 
        <input type="submit" id="btnRefresh" value='Refresh' /> 
       </td> 
      </tr> 
     } 
     @using (Html.BeginForm("GeneratePDF", "Home", FormMethod.Post, new { id = "frmProcess" }))  {    if (Model.ShowGeneratePDFBtn == true) 
      { 
       if (Model.ErrorT != string.Empty) 
       { 
      <tr> 
       <td colspan="5"> 
        <u><b>@Html.Label("Templates:")</b></u> 

       </td> 
      </tr> 
      <tr> 
       @foreach (var item in Model.Templates) 
       { 
        <td> 
         @Html.CheckBoxFor(model => item.IsChecked) 
         @Html.DisplayFor(model => item.TemplateName) 
        </td> 
       } 
      </tr> 
       } 
       else 
       { 
        Model.Error = Model.ErrorT; 
       } 

       if (Model.ErrorG != string.Empty) 
       { 
      <tr> 
       <td colspan="5"> 
        <u><b>@Html.Label("Guarantors:")</b></u> 
       </td> 
      </tr> 
      <tr> 
       @foreach (var item in Model.Guarantors) 
       { 
        <td> 
         @Html.CheckBoxFor(model => item.isChecked) 
         @Html.DisplayFor(model => item.GuarantorFirstName)&nbsp;@Html.DisplayFor(model => item.GuarantorLastName) 
        </td> 
       } 
      </tr> 
       } 
       else 
       { 
        Model.Error = Model.ErrorG; 
       } 
      <tr> 
       <td> 
        <input type="submit" id="btnGeneratePDF" value='Generate PDF' /> 
       </td> 
      </tr> 
      <tr> 
       <td colspan="5"> 
        @Model.Error 
       </td> 
      </tr> 
      } 
     }  </table> 

</div> 

<script type="text/javascript"> 

    $('btnRefresh').on('click', '#btnRefresh', function() { 
     Refresh(); 
    }); 

    function Refresh() { 

     var LoanID = $("#LoanID").val(); 

     if (LoanID != "") { 
      document.forms["frmTemps"].submit(); 
     } 
    } 
</script> 

控制器

public ActionResult Index(ViewModelTemplate_Guarantors model) 


    { 
       ViewBag.Error = ""; 
       model.ShowGeneratePDFBtn = false; 
       return View("Index", model); 
      } 


// used for the first form "frmRefresh"   [HttpPost] public ActionResult Refresh(ViewModelTemplate_Guarantors model)   { 
      try 
      { 
       model.Error = string.Empty; 

       bool dbHasRows = db.ChkLoanFields(Convert.ToInt32(model.LoanId)); 

       if (!dbHasRows) 
       { 
        model.ShowGeneratePDFBtn = false; 
        model.Error = "Details not available for this LoanId."; 
        return View("Index",model); 
       } 
       else 
       { 
        int TemplateCnt = 0; 
        int GuarantorCnt = 0; 
        //todo - modify 2nd & 3rd parms instead of hardcoding 
        ViewModelTemplate_Guarantors tg = db.SelectViewModelTemplate_Guarantors(Convert.ToInt32(model.LoanId), "All", "All", out TemplateCnt, out GuarantorCnt); 

        if (TemplateCnt > 0) 
         model.Templates = tg.Templates; 
        else 
         model.ErrorT = "Templates not available for this LoanType."; 

        if (GuarantorCnt > 0) 
         model.Guarantors = tg.Guarantors; 
        else 
         model.ErrorG = "Guarantors not available for this LoanId."; 

        model.ShowGeneratePDFBtn = true; 
    // right before the return here, the model is full of data. return View("Index", model);     } 
      } 
      catch (Exception ex) 
      { 
       throw ex; 
      } 
     } [HttpPost] // when I check the data here (via submission from the "frmProcess" form, the model is completely empty, null, etc... WHY???? // i NEED the model data here to perform processing in this action method. public ActionResult GeneratePDF(ViewModelTemplate_Guarantors model)   { 
      try 
      { 
       int FolderNo, GuarantorNum = 0; 
       string Folder, LoanFolder = String.Empty; 
       string FormId, FormName, GuarantorName = String.Empty; 

       int LoanId = Convert.ToInt32(model.LoanId); 
       LoanFolder = LoanId.ToString().PadLeft(8, '0'); 

       //To calculate FolderId based on LoanId 
       if ((LoanId > 0) && (LoanId < 99000)) 
       { 
        FolderNo = ((int)(LoanId/10000) * 10000); 
       } 
       else 
       { 
        FolderNo = ((int)(LoanId/1000) * 1000); 
       } 

       Folder = ((int)FolderNo).ToString(); 
       Folder = Folder.PadLeft(8, '0'); 

       //todo - 2nd parm SelectedValue of dept 
       List<sSRPTFundexDocCodes1_Test_Result> sSRPTFundexDocCodes1 = db.GetFormValues(Convert.ToInt32(model.LoanId), (model.SelectedDeptValue)); 

       if (sSRPTFundexDocCodes1 != null) 
       { 
        foreach (PDFTemplate template in model.Templates)      { 
         if (template.IsChecked == true)       { 

TEMPLATENAME没有出现在模型后门柱。 这工作正常...值(复选框和相应的名称显示在窗体上

但是,发布GeneratePDF按钮时,我看到的所有模型是如果复选框被选中(这是伟大的)。在玩过以下很多语句之后(ValueFor,DisplayFor,LabelFor,EditorFor等),模板名称返回的值是空白的。我需要与复选框相对应的模板名称。

@ Html.ValueFor(型号=> Model.Templates [I] .TemplateName)

我怎样才能做到这一点?谢谢你的时间提前......下面是我更新的代码。查看的

ViewModel public partial class ViewModelTemplate_Guarantors 
    { 
     public ViewModelTemplate_Guarantors() 
     { 
      Templates = new List<PDFTemplate>(); 
      Guarantors = new List<tGuarantor>(); 
     } 

     public int SelectedTemplateId { get; set; } 
     public List<PDFTemplate> Templates { get; set; } 

     public int SelectedGuarantorId { get; set; } 
     public List<tGuarantor> Guarantors { get; set; } 

     public string LoanId { get; set; } 
     public string SelectedDeptText { get; set; } 
     public string SelectedDeptValue { get; set; } 
     public string LoanType { get; set; } 

     public string Error { get; set; } 
     public string ErrorT { get; set; } 
     public string ErrorG { get; set; } 
     public bool ShowGeneratePDFBtn { get; set; } 
    } 

Pertinet部分:

if (Model.ShowGeneratePDFBtn == true) 
      { 
       if (Model.ErrorT == string.Empty) 
       { 
      <tr> 
       <td colspan="5"> 
        <u><b>@Html.Label("Templates:")</b></u> 
       </td> 
      </tr> 
      <tr> 
       @for (int i = 0; i < Model.Templates.Count; i++) 
       { 
        <td> 
         @Html.CheckBoxFor(model => Model.Templates[i].IsChecked) 
         @Html.ValueFor(model => Model.Templates[i].TemplateName)      </td> 
       } 

      </tr> 
       } 
       else 
       { 
      <tr> 
       <td> 
        <b>@Html.DisplayFor(model => Model.ErrorT)</b> 
       </td> 
      </tr> 
       } 

       if (Model.ErrorG == string.Empty) 
       { 
      <tr> 
       <td colspan="5"> 
        <u><b>@Html.Label("Guarantors:")</b></u> 
       </td> 
      </tr> 
      <tr> 
       @for (int i = 0; i < Model.Guarantors.Count; i++) 
       { 
        <td> 
         @Html.CheckBoxFor(model => Model.Guarantors[i].isChecked) 
         @Html.ValueFor(model => Model.Guarantors[i].GuarantorFirstName)&nbsp;@Html.ValueFor(model => Model.Guarantors[i].GuarantorLastName)      </td> 
       } 

      </tr> 
       } 
       else 
       { 
      <tr> 
       <td> 
        <b>@Html.DisplayFor(model => Model.ErrorG)</b> 
       </td> 
      </tr> 
       } 
      }  
      <tr> 
       <td colspan="3"> 
        <input type="submit" name="submitbutton" id="btnRefresh" value='Refresh' /> 
       </td> 
       @if (Model.ShowGeneratePDFBtn == true) 
       { 
        <td> 
         <input type="submit" name="submitbutton" id="btnGeneratePDF" value='Generate PDF' /> 
        </td> 
       } 
      </tr> 
      <tr> 
       <td colspan="5"> 
        @Model.Error 
       </td> 
      </tr> 

控制器:

public ActionResult ProcessForm(string submitbutton, ViewModelTemplate_Guarantors model, FormCollection collection) 

基本上,再次它的正常工作。当表单使用“生成PDF”按钮发布帖子时,我会得到每个复选框的选中值,而不是模型中模板的名称。

我在这里错过了什么?

我提交之前的表单基本上如下所示。这是复选框(Form4)的名称,我一旦进入ActionResult,就会在我的模型中作为TemplateID丢失。

public ActionResult ProcessForm(string submitbutton, ViewModelTemplate_Guarantors model, FormCollection collection) 

复选框(选中)Form4

@for (int i = 0; i < Model.Templates.Count; i++) 
       { 
        <td> 
         @Html.CheckBoxFor(model => Model.Templates[i].IsChecked) 
         @Html.DisplayFor(model => Model.Templates[i].TemplateName) 
        </td> 
       } 
+0

正如我在最后一个问题中告诉你的,IEnumerables不能以这种方式绑定。为了使模型联编程序绑定它们,它们必须是可变集合(IEnumerable不能),例如List。 –

回答

8

正如我在我的评论中提到。模型联编程序无法绑定到IEnumerable。

你的模型应该是这样的:

public partial class ViewModelTemplate_Guarantors 
{ 
    public ViewModelTemplate_Guarantors() { 
     Templates = new List<PDFTemplate>(); // These are important, the model binder 
     Guarantors = new List<tGuarantor>(); // will not instantiate nested classes 
    } 
    public int SelectedTemplateId { get; set; } 
    public List<PDFTemplate> Templates { get; set; } 

    public int SelectedGuarantorId { get; set; } 
    public List<tGuarantor> Guarantors { get; set; } 

    ... 
} 

此外,您认为应该是这样的:

... 

@for(int i = 0; i < Model.Templates.Count; i++) // should really use label, not display 
{ 
    <td> 
     @Html.CheckBoxFor(model => Model.Templates[i].IsChecked) 
     @Html.DisplayFor(model => Model.Templates[i].TemplateName) 
    </td> 
} 

... 

@for(int i = 0; i < Model.Guarantors.Count; i++) 
{ 
    <td> 
     @Html.CheckBoxFor(model => Model.Guarantors[i].isChecked) 
     @Html.DisplayFor(model => Model.Gurantors[i].GuarantorFirstName)&nbsp;@Html.DisplayFor(model => Model.Guarantors[i].GuarantorLastName) 
    </td> 
} 

... 

虽然一个更好的选择是使用一个EditorTemplate,而是这样做:

... 
@Html.EditorFor(m => m.Templates) 
... 
@Html.EditorFor(m => m.Guarantors) 
... 

然后在〜/ Views/Shared中创建一个名为EditorTemplates的文件夹,然后创建t wo文件称为Templates.cshtmlGuarantors.cshtml

在那些文件你可以这样做:

@model PDFTemplate 
<td> 
    @Html.CheckBoxFor(model => model.IsChecked) 
    @Html.DisplayFor(model => model.TemplateName) 
</td> 

@model Guarantors 
<td> 
    @Html.CheckBoxFor(model => model.isChecked) 
    @Html.DisplayFor(model => model.GuarantorFirstName)&nbsp;@Html.DisplayFor(model => model.GuarantorLastName) 
</td> 

编辑模板将自动遍历集合,并将占正确的命名格式,使模型绑定理解这是一个集合。

+0

哇!我明天将在工作中尝试你的代码。我确实在我的应用程序中编写了代码,但在我完全访问数据库之前无法进行测试。我得到你说的第一部分,但是当我把第二部分放在EditorTemplates中时,我得到了msg“一个表达式树可能不包含动态操作。”无论如何,如果我只做第一部分 - 没有出汗,那就没问题。我在这里不知道关于MVC的两件大事。 1,模型联编程序无法绑定到IEnumerable(这让我疯狂)和2,我在回发模型中丢失的其他值不包含“For”。 – sagesky36

+0

我会让你知道我是如何制定出你的答案的。如果不是像你这样的人帮助我们新手,我们会迷路。再次感谢您的帮助.... – sagesky36

+0

@ sagesky36 - for语法的原因是因为它需要为模型联编程序创建完整的前缀命名方案才能正确绑定。使用foreach,它会剥去前缀,以便绑定器找不到它应该绑定的位置。我不明白为什么当使用EditorTemplates时会出现动态错误,您在那里做的任何事情都使用动态属性(如ViewData或ViewBag) –

相关问题