我使用这个模型;
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等。
当我点击加号时,将raw添加到html,Mvc必须添加到虚拟列表元素。
我该怎么做?我该怎么办?我需要建议。 TY ..
我的英语不好。非常遗憾。我希望你能理解我。