センターのテーブルを表示するために ng-repeat を使用しています。各センターで、角度からのデータを使用する編集ボタンを提供したいと思います:
<table data-ng-init="centers" data-ng-model="Centers">
<tr data-ng-repeat="center in centers">
<td class="center-logo">
</td>
<td class="center-name">
<h4>{{center.Name}}</h4>
</td>
<td class="center-address">{{center.City}}, {{center.Country}}
</td>
<td>{{center.StudyVersion}}</td>
<td>
<a href="@Url.Action("Edit","Center",new {code = {{center.Code}}})" class="btn">
<i class="icon-edit"></i>Edit
</a>
</td>
</tr>
</table>
今VSは私に式のエラーを与えています:
@Url.Action("Edit","Center",new {code = "{{center.Code}}"})
方法が見つからないように見えるので、かみそりは {{center.Code} の値をプレーンな html のように使用しています。