$scope.users = [{id: 1, name: "Test"}, {id: 2, name: "Dude"}]; のコントローラーがあります。
{{id | のようなことをしたい getName}} そして、私が持っているIDを取得し、$scope.usersをクロールして対応するIDを探し、IDの値に応じて「Test」または「Dude」を出力します。
これを達成するには、angularJSで何を使用すればよいですか?
<table class="table table-striped">
<thead>
<tr>
<th>Winner</th>
<th>Loser</th>
<th>Date</th>
</tr>
</thead>
<tbody ng-repeat="match in matchs">
<tr>
<!-- What I want is instead of winner_id / loser_id go and get from $scope.users the id and output user name instead -->
<td>{{match.winner_id}} - {{match.winner_score}}</td>
<td>{{match.loser_id}} - {{match.loser_score}}</td>
<td>{{match.created_at}}</td>
</tr>
</tbody>
</table>