1
는이 같은 항목을 통해 루프를 원하는 보여줍니다NG-초기화에서 NG-반복 마지막 항목이 정보
<section class="col-sm-4" data-ng-controller="PredictionsController" data-ng-init="findMyPredictions()">
<div class="games">
<div class="game-row" ng-repeat="prediction in predictions" ng-init="getGame(prediction.game_id)">
<a class="button primary alt block" href="#!/predictions/{{prediction._id}}">
<span class="home flag {{gameInfo.team1_key}}"></span>
<span class="middle">
<span class="date">{{gameInfo.play_at | date: 'd.MM HH:mm'}}</span>
<span class="versus">{{gameInfo.team1_title}} - {{gameInfo.team2_title}}</span>
</span>
<span class="away flag {{gameInfo.team2_key}}"></span>
</a>
</div>
</div>
</section>
그러나 출력은 X 시간에 동일한 정보입니다 : 요청이 있지만 을 올바르게 완료 :
무엇이 잘못 되었습니까?
UPDATE : 내 getGame 기능 : 당신은 gameInfo
때마다 덮어 쓰는
$scope.getGame = function (game_id) {
$scope.gameInfo = {};
$http.get('/games/' + game_id)
.success(function (data) {
$scope.gameInfo = data;
});
};
그것은 나를 위해 작동하지 않는 될 것입니다, 나는 내 질문에 업데이트되었습니다. 의견 있으십니까? – Algeron
'prediction.gameInfo = {}; '명령이 정말로 필요합니까? –