.Net mvc在razor中创建动态虚拟List <model>属性

时间:2016-03-13 15:30:27

标签: c# asp.net-mvc asp.net-mvc-4 razor dynamic

我使用这个模型;

Test
---
public string testdata { get; set; }
public int testvalue { get; set; }
public virtual List<othertest> othertest { get; set; }

othertest
---
public string othertestdata {get;Set;}
public int othertestvalue {get;set;}

我的剃刀视图代码是;

@model Sample.Models.Test

@Html.EditorFor(model => model.testdata, new { htmlAttributes = new { @class = "form-control" } })
@Html.EditorFor(model => model.testvalue, new { htmlAttributes = new { @class = "form-control" } })

直到这里才行。 我需要创建列表元素,但不是model.othertes [0] .othertestdata等。

sample

当我点击加号时,将raw添加到html,Mvc必须添加到虚拟列表元素。

我该怎么做?我该怎么办?我需要建议。 TY ..

我的英语不好。非常遗憾。我希望你能理解我。

0 个答案:

没有答案