1

我有一个根据用户输入填充来自 API 的数据的表。

然后我显示结果如下:

<tr ng-repeat="show in data.popularMatches">
    <td><a href="#" ng-click="selectShow('{{show.id}}')">{{show.title}}</a></td>
    <td>{{show.title_description}}</td>
</tr>

我想要实现的是,selectShow当单击每个节目的链接时,将每个节目的 ID 传递给我的 Angular 控制器中的函数。我怎样才能做到这一点?

4

1 回答 1

5

你应该只需要 ng-click="selectShow(show.id)"

于 2013-03-09T14:38:13.517 回答