0
私はいくつかのコードがあります。ビューモデルを使用してビュー上でAsp MVC angularjs ng-repeatを入れた
public class testViewModel
{
public int Id {get;set;}
public string TestName {get;set;}
public List<string> SecurityName {get;set;}
}
I私は、次のしている私の見解:私がやろうとしています
<table>
<thead>
<tr>
<th>@Html.LabelFor(m => m.Id)</th>
<th>@Html.LabelFor(m => m.TestName)</th>
<th>@Html.LabelFor(m => m.SecurityName)</th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="(values, a) in approvalStreams" ng-include="getTemplate(a)"></tr>
</tbody>
<script type="text/ng-template" id="view">
<td>{{a.Id}}</td>
<td>{{a.TestNametd></td>
<td>
@*<table>
<tbody>
<tr ng-repeat="b in values">
<td>{{SecurityName}}</td>
</tr>
</tbody>
</table>*@
{{a.SecurityName}}
</td>
</script>
何がモデルであるするSecurityNameののコレクションをリストです。
、私はテーブルとネストされたNG-リピートを使用する場合、テーブルを
<!-- ngRepeat: b in values -->
としてレンダリングされている場合、これは、コレクションの最初のアイテムをレンダリング{{a.SecurityName}}使用する場合と必要な名前のリストではありません。