我想将列表传递给具有BeginCollectionItem()的PartialView。这是代码,
InquiryOrderViewModel
public class InquiryOrderViewModel
{
public InquiryOrder InquiryOrder { get; set; }
public List<InquiryOrderDetail> InquiryOrderDetails { get; set; }
public List<InquiryComponentDetail> InquiryComponentDetails { get; set; }
}
InquiryComponentDetail
型号
public class InquiryComponentDetail
{
[Key]
public int InquiryComponentDetailId { get; set; }
public int DesignCodeId { get; set; }
public int QualityReferenceId { get; set; }
public int Height { get; set; }
public int Length { get; set; }
public int GscmComp { get; set; }
public int Wastage { get; set; }
public int TotalYarn { get; set; }
public virtual DesignCodeQltyRef DesignCodeQltyRef { get; set; }
}
InquiryOrderIndex
查看和一次呈现多个项目的脚本
@model eKnittingData.InquiryOrderViewModel
@using (Html.BeginForm("Save", "InquiryOrder"))
{
..........
<div id="cmpDts">
@foreach (var item in Model.InquiryComponentDetails)
{
}
</div>
..........
}
<script>
var prev;
$(document).on('focus', '.class03', function () {
prev = $(this).val();
}).on('change', '.class03', function () {
if (prev != "") {
$.ajax({
url: '@Url.Action("ComponentDts", "InquiryOrder")', // dont hard code your url's
type: "GET",
data: { DesignCdId: $(this).val() }, // pass the selected value
success: function (data) {
$('.cmpCls').last().replaceWith(data);
}
});
}
else {
$.ajax({
url: '@Url.Action("ComponentDts", "InquiryOrder")', // dont hard code your url's
type: "GET",
data: { DesignCdId: $(this).val() }, // pass the selected value
success: function (data) {
$(".class03 option[value='']").remove();
$('#cmpDts').append(data);
}
});
}
});
</script>
_DetailEditorRow
PartialView为ddls提供了class03
,并在主视图中附加了它。(这只是为了向您展示class03
)
@model eKnittingData.InquiryOrderDetail
@using eKnitting.Helpers
@using (Html.BeginCollectionItem("InquiryOrderDetails"))
{
<div class="editorRow">
@Html.DropDownListFor(a => a.ComponentId, (SelectList)ViewBag.CompList, "Select", new { Class = "class02" })
@Html.DropDownListFor(a => a.DesignCodeId, (SelectList)ViewBag.DCodeList, "Select", new { Class = "class03" })
@Html.TextBoxFor(a => a.NoOfParts, new { Class = "class01" })
<a href="#" class="deleteRow">delete</a>
</div>
}
and in main view it got appended to
<div id="editorRows">
@foreach (var item in Model.InquiryOrderDetails)
{
Html.RenderPartial("_DetailEditorRow", item);
}
</div>
_ComponentDetails
PartialView用于呈现项目(列表已立即传递)
@model List<eKnittingData.InquiryComponentDetail>
@using eKnitting.Helpers
<div class="cmpCls">
@foreach(var icd in Model)
{
using (Html.BeginCollectionItem("InquiryComponentDetails"))
{
<div class="innerCmpCls">
@Html.DisplayFor(a => icd.DesignCodeId)
@Html.DisplayFor(a => icd.QualityReferenceId)
@Html.TextBoxFor(a => icd.Height, new { Class="clsHeight clsSameHL"})
@Html.TextBoxFor(a => icd.Length, new { Class = "clsLength clsSameHL" })
@Html.TextBoxFor(a => icd.GscmComp, new { Class = "clsGscmComp clsSameHL" })
@Html.TextBoxFor(A => icd.Wastage, new { Class = "clsWastage" })
@Html.ActionLink("Fds", "View", new { id = icd.QualityReferenceId }, new { @class = "myLink", data_id = icd.QualityReferenceId })
@Html.TextBoxFor(a => icd.TotalYarn, new { Class = "clsTotalYarn" })
<br>
<div class="popFds"></div>
</div>
}
}
</div>
ActionResult,一次传递一个列表并返回PartialView
public ActionResult ComponentDts(int DesignCdId)
{
var objContext = new KnittingdbContext();
var QltyRefList = objContext.DesignCodeQltyRefs.Where(a=>a.DesignCodeId==DesignCdId).ToList();
var iocdList = new List<InquiryComponentDetail>();
foreach(DesignCodeQltyRef dcqr in QltyRefList)
{
iocdList.Add(new InquiryComponentDetail {
DesignCodeId=dcqr.DesignCodeId,
QualityReferenceId=dcqr.QltyRefId
});
}
return PartialView("_ComponentDetails", iocdList);
}
GET
var objContext = new KnittingdbContext();
var newIovm = new InquiryOrderViewModel();
var newIo = new InquiryOrder();
var iocdL = new List<InquiryComponentDetail>();
newIovm.InquiryOrder = newIo;
newIovm.InquiryComponentDetails = iocdL;
return View(newIovm);
POST
public ActionResult Save(InquiryOrderViewModel inquiryOrderViewModel)
{
.........
}
当用户从下拉列表(class03
)中选择一个项目时,使用PartialView(_ComponentDetails'
)将与该项目相关的项目呈现给视图并附加。然后,用户从另一个ddl(class03
)中选择另一个项目,相关项目将在先前附加的项目之后呈现并附加。用户可以继续这样下去。
渲染和追加项目工作正常。但对于PostBack,即使我正确地获得了列表中的项目数(我通过在POST
ActionResult上设置了一个断点来检查它),所有项目内容都显示为空值。请指导我以正确的方式实现这一目标。所有帮助赞赏。谢谢!
答案 0 :(得分:1)
您的_ComponentDetails
视图正在生成表单控件,其名称属性类似于(###
为Guid
)
name="InquiryComponentDetail[###].icd.Height"
与您的模型不匹配,因为typeof InquiryComponentDetail
不包含名为icd
的属性。要绑定到您的模型,您的name
属性需要
name="InquiryComponentDetail[###].Height"
要生成正确的html,您需要2个部分
_ComponentDetailsList.cshtml
(这将由ComponentDts()
方法使用return PartialView("_ComponentDetailsList", iocdList);
调用
@model List<eKnittingData.InquiryComponentDetail>
<div class="cmpCls">
@foreach(var item in Model)
{
Html.RenderPartial("_ComponentDetails", item);
}
</div>
_ComponentDetails.cshtml
@model eKnittingData.InquiryComponentDetail
using (Html.BeginCollectionItem("InquiryComponentDetails"))
{
<div class="innerCmpCls">
@Html.DisplayFor(a => a.DesignCodeId)
@Html.DisplayFor(a => a.QualityReferenceId)
@Html.TextBoxFor(a => a.Height, new { @class="clsHeight clsSameHL"}) // use @class, not Class
@Html.TextBoxFor(a => a.Length, new { Class = "clsLength clsSameHL" })
....
</div>
}