我工作的一個ASP.NET MVC應用5。我需要在局部視圖中創建表單。在這個表格中,我傳遞了ViewModel
,它們包含所有相關的模型類實例。現在是模型類之一,我需要傳遞數據列表,以便我可以在foreach循環中使用剃鬚刀代碼進行打印。傳遞模型和modellist數據一起的局部視圖 - ASP.NET MVC 5
現在我需要的是通過幾個類和一個模型來查看列表數據的模型......
非常感謝
視圖模型:
public class QualificationViewModel : LEO.DAL.ViewModels.IQualificationViewModel
{
public Qualification _Qualification { get; set; }
public QualificationType _QualificationType { get; set; }
public Subject _Subject { get; set; }
public ComponentScheme _ComponentScheme { get; set; }
}
控制器:
[HttpGet]
public ActionResult CreateNewQualification()
{
var model = new QualificationViewModel();
var ComponentList = //imagin this is list of components that i need to send along with viewModel ??????????????????????
return PartialView("PartialQualification_Create", model);
}
查看(需要更正此部分(此處顯示清單數據)
@model LEO.DAL.ViewModels.QualificationViewModel
@*<div class="_FormGrid_block_1">
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model._ComponentScheme.ComponentTitle)
</th>
<th>head1</th>
</tr>
@foreach (var item in Model._ComponentScheme)
{
<tr>
<td>
@Html.DisplayFor(modelItem => modelItem._ComponentScheme.ComponentTitle)
</td>
<td>
aaaaaaaaaaaaaa
</td>
</tr>
}
</table>
</div>*@
什麼是你的問題? –
如果我理解corectly你想發送一個對象列表類型'QualificationViewModel'到模型? –
與ComponentScheme – toxic