我的HTML中有两个表。我想从一个列表中获取数据并将其传递给另一个列表。我无法进行相同的ng-repeat调用,因为在第二个表中我有一个单独的客户,我只想显示他的ID。在第一张桌子上,我有所有客户。
<table border="1" id="userTable">
<tr>
<b>#</b>
</tr>
<tr ng-repeat="user in userList" ng-click="viewUserDiv()">
<td ng-model="id">{{user.id}}</td>
</tr>
</table>
<div ng-show="userDiv">
<table border="1">
<tr>
<b>#</b>
</tr>
<td ng-model="id">{{id}}</td>
</table>
</div>
答案 0 :(得分:1)
public class MyController : GlassController
{
public override ActionResult Index()
{
return View();
}
}