0
각 부모로부터 자식 목록을 검색하려면 쿼리를 실행해야합니다.작은 중첩 된 자식 쿼리 무한 루프
HTML :
<tr ng-repeat="parent in parents">
<td>{{parent.id}}</td>
<td>{{parent.name}}</td>
<td>
<li ng-repeat="child in getChildren(parent.id)">
{{child}}
</li>
</td>
</tr>
JS는 :
app.controller('mainCtrl', function($scope, Restangular) {
...
$scope.getChildren = function(parentId) {
console.log(parentId); //called over and over
//should GET e.g. /api/parents/1/children
return Restangular.one('parents', parentId).getList('children').then(function(children) {
console.log(JSON.stringify(children)); //never hit
return children;
})
}
나는 올바른 API 엔드 포인트가 호출지고 볼 수 있지만, getChildren() 함수는 같은 parentId 반복적으로 호출된다. 또한 결코 돌아 오지 않는 것처럼 보입니다. 나는 그것의 명백한 무엇인가 확실하다 - 나는 무엇을 잘못하고 있냐?
이 예제와 관련된 것 같습니다 : Infinite loop with Angular expression binding 그러나이 예제에서는 Restangular를 사용하지 않습니다.