0

我在使用上述主题行时遇到了两个问题。

我有两个需要在一个视图中使用的强类型模型。我需要两个不同模型的原因是因为正在读取的数据来自两个不同的数据库,所以我需要为每个数据库创建一个 edmx(实体框架)数据模型。

我只是想引入“模板”和“担保人”的动态列表。返回的项目数量显然会发生变化。

问题 1:我想将每个复选框设置为“选中”并设置其名称以供显示。有了这个,我不知道语法是否正确或我设置它的方式,即使第二个没有给我设计时编译错误。

问题 2:我遇到的另一个问题是我需要为每组复选框使用不同的模型。但是,当我在第二组复选框中设置模型时,第一个模型被忽略(这是有道理的,因为它是最后一个)。

如何在同一视图中成功使用每个模型以正确设置复选框?

这是代码:

<tr>
                            <td colspan="5">
                                <b>@Html.Label("lbl_Templates", "Templates:")</b>
                            </td>
                        </tr>
                        <tr>
                            @model IEnumerable<PDFConverterModel.PDFTemplate>
                            @foreach (var item in Model)
                            {
                                <td>
                                    @Html.CheckBoxFor(model => true, item.TemplateName)
                                </td>
                            }
                        </tr>
                        <tr>
                            <td colspan="5">
                                <b>@Html.Label("lbl_Guarantor", "Guarantor(s):")</b>
                            </td>
                        </tr>
                        <tr>
                                @model IEnumerable<PDFConverterModel.tGuarantor>
                                @foreach (var item in Model)
                                {
                                    <td>
                                        @Html.CheckBoxFor(model => true, item.GuarantorFirstName + " " + item.GuarantorLastName)
                                    </td>
                                }
                        </tr>

顺便说一句,标签的使用是否在语法上正确设置,其中第一个参数是标签的 ID,第二个参数是显示的值?

解决方案的一部分:我快到了......我在获取我想要通过 View 上的 CheckBoxFor Html Helper 显示的属性的索引时遇到问题(直到现在我还没有使用过)。 ..

如果你能帮助我完成最后一部分,我将不胜感激......

您可以看到我创建了以下 ViewModel(我正在使用的是 ViewModelTemplate_Guarantors 类)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PDFConverterModel;

namespace PDFConverterModel.ViewModels
{
    public class ViewModelTemplate
    {
        public int SelectedTemplateId { get; set; }
        public IEnumerable<PDFTemplate> Templates { get; set; }
    }

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

    public class ViewModelDepartment
    {
        public int SelectedDepartmentId { get; set; }
        public IEnumerable<Department> Departments { get; set; }
    }

    public 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; }
    }
}

下面是我在填充模型的客户端项目中的单独 DLL 中创建的业务代码方法。

public ViewModelTemplate_Guarantors SelectViewModelTemplate_Guarantors(int LoanId, string LoanTypeId, int DepartmentId)
        {
            try
            {
                var model = new ViewModelTemplate_Guarantors();

                using (PDFService03Entities DbContext1 = new PDFService03Entities())
                {

                    DbContext1.Database.Connection.Open();

                    IEnumerable<PDFTemplate> temps = DbContext1.PDFTemplates.Where(p => p.LoanTypeId == Convert.ToInt32(LoanTypeId) && p.DepartmentId == DepartmentId).FromCache(CachePolicy.WithSlidingExpiration(TimeSpan.FromSeconds(30)));

                    model.Templates = temps.Select(x => new PDFTemplate
                    {
                        TemplateId = x.TemplateId.ToString(),
                        TemplateName = x.TemplateName
                    });
                }

                using (VisionEntities DbContext2 = new VisionEntities())
                {
                    DbContext2.Database.Connection.Open();

                    IEnumerable<tGuarantor> guars = DbContext2.tGuarantors.Where(p => p.ApplicationNum == LoanId).FromCache(CachePolicy.WithSlidingExpiration(TimeSpan.FromSeconds(30)));

                    model.Guarantors = guars.Select(x => new tGuarantor
                    {
                        ApplicationNum = x.ApplicationNum,
                        GuarantorFirstName = x.GuarantorFirstName,
                        GuarantorLastName = x.GuarantorLastName
                    });
                }

                return model;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

下面是调用上述代码的 Contoller Action 方法的一部分:

ViewModelTemplate_Guarantors tg = db.SelectViewModelTemplate_Guarantors(Convert.ToInt32(loanID), loanType, Convert.ToInt32(selectedVal));

下面是我在视图中遇到问题的地方......

由于我要传回一个 IEnumerable 对象,如果我能够在此处发送附件,我将有 4 个屏幕截图显示我如何使用我的视图。

可以说,屏幕截图清楚地表明模板和担保人出现了。它们分别是 IEnumerable ViewModelTemplate_Guarantors.Templates 和 .Guarantors 类型。

我只是想输入要返回的项目的索引,但我得到一个设计时编译错误:

“无法使用 [] 将索引分别应用于“System.Collections.Generic.IEnumerable”和 tGuarantor 类型的表达式。

将其称为 101 编程,除非我已经精疲力尽,但我应该能够为上述集合应用一个索引变量来取回相应的项目,除非我完全忘记了一些东西....

我在下面做错了什么???

这是我的观点:

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

<form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td>
                    <table style="width: 1000px">
                        <tr>
                            <td colspan="5">
                                <img alt="BHG Logo" src="~/Images/logo.gif" />
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <label for="txtLoanID">Loan ID :</label>
                            @(Html.Kendo().IntegerTextBox()
                                        .Name("txtLoanID")
                                        .Placeholder("Enter LoanID")
                                )

                            <td colspan="3">
                                <input type="submit" id="btnRefresh" value='Refresh' />
                            </td>
                        </tr>
                        <tr>
                            <td><@Html.Label("lblLoanType1", "Loan Type : ")</td>
                            <td><@Html.Label("lblLoanType2", "SBA")</td>
                            <td></td>
                            <td>
                                <label for="ddlDept">Department:</label>
                                @(Html.Kendo().DropDownList()
                                      .Name("ddlDept")
                                      .DataTextField("DepartmentName")
                                      .DataValueField("DepartmentID")
                                      .Events(e => e.Change("Refresh"))
                                      .DataSource(source =>
                                      {
                                          source.Read(read =>
                                          {
                                              read.Action("GetDepartments", "Home");
                                          });
                                      })
                                )
                            </td>
                        </tr>
                        <tr>
                            <td colspan="5">
                                <b>@Html.Label("lbl_Templates", "Templates:")</b>
                            </td>
                        </tr>
                        <tr>
                            @ctr = 0;
                            @foreach (var item in Model)
                            {
                                <td>
                                    @Html.CheckBoxFor(model => item.Templates[ctr].TemplateName)
                                    @ctr = ctr + 1;
                                    @Html.LabelFor(model => item.Templates[ctr].TemplateName)
                                </td>
                            }
                        </tr>
                        <tr>
                            <td colspan="5">
                                <b>@Html.Label("lbl_Guarantor", "Guarantor(s):")</b>
                            </td>
                        </tr>
                        <tr>
                            @ctr = 0;
                            @foreach (var item in Model)
                            {
                                <td>
                                    @Html.CheckBoxFor(model => item.Guarantors[ctr].GuarantorFirstName + " " + item.GuarantorLastName)
                                    @ctr = ctr + 1;
                                    @Html.LabelFor(model => item.Guarantors[ctr].GuarantorFirstName + " " + item.GuarantorLastName)
                                </td>
                            }
                        </tr>
                        <tr>
                            <td colspan="2"></td>
                            <td>
                                @*@using (Html.BeginForm("GeneratePDF", "Home", new { @loanID = loanID }, FormMethod.Post))
                                { 
                                    <input type="submit" id="btnGeneratePDF" value='Generate PDF' />
                                }*@
                            </td>
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td colspan="5">
                                <b>@ViewBag.Error</b>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
    </div>
</form>

<script type="text/javascript">

    $(document).ready(function () {
        $("#ddlDept").prepend("<option value='All' selected='selected'></option>");
    });

    var txtLoanID;

    $("#btnRefresh").click(function () {
        Refresh();
    });

    function Refresh() {

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

        if (txtLoanID != "") {
            $.post('/Home/Refresh', { loanID: $('#txtLoanID').val(), loanType: $('#lblLoanType2').val, selectedVal: $("#ddlDept option:selected").text() }, function (data) {
                data.success;
                if (data.success == true) {
                    if (data.templist == true) {
                        //show the templates
                        $("#lbl_Templates").visible = true;
                        $("#btnGeneratePDF").visible = true;
                    }
                    if (data.guarlist == true) {
                        //show the guarantors
                        $("#lbl_Guarantor").visible = true;
                        $("#btnGeneratePDF").visible = true;
                    }
                    if ((data.templist == true) && (data.guarlist == true)) {
                        $("#btnGeneratePDF").visible = true;
                    }
                    else {
                        $("#btnGeneratePDF").visible = false;
                    }
                }
                else {
                    $("#btnGeneratePDF").visible = false;
                    //hide the templates
                    $("#lbl_Templates").visible = false;
                    $("#btnGeneratePDF").visible = false;
                    //hide the guarantors
                    $("#lbl_Guarantor").visible = false;
                    $("#btnGeneratePDF").visible = false;
                }
            });
        }
        else {
            alert("Please enter a Loan ID.");
        }
    }

    $("#form1").validate({
        event: "submit",
        rules: {
            txtLoanID: {
                required: true
            }
        },
        messages: {
            txtLoanID: {
                required: ' Please enter a Loan ID. '
            }
        }
    });

</script>
4

2 回答 2

2

如果您确实需要完成为模型中不存在的值创建控件的任务,则可以使用 Html.Checkbox 而不是 Html.CheckBoxFor。

这允许您以编程方式指定名称、值和 IsChecked 属性。

或者,按照其他答案的建议进行操作,并在您的模型上创建一个 GarantorFullName 属性。

于 2012-09-30T17:48:44.650 回答
1

CheckBoxFor 期望模型中一个属性的确切名称。

您不能为 item.GuarantorFirstName + " " + item.GuarantorLastName 选择复选框

只能一个项目,例如只有 item.GuarantorFirstName

如果您同时需要这两者,请在您的模型中创建一个包含 item.GuarantorFirstName + " " + item.GuarantorLastName 的属性全名

CheckBoxFor 应该指向 item.Fullname

于 2012-09-30T14:38:20.410 回答