0
컨트롤러에서 부모 구성 요소 인 목록이 정의 된 자식 구성 요소에서 ng-repeat를 사용하려고합니다. 그러나 그것이 작동하는 유일한 방법은 목록이 부모로부터 왔다고 지정하는 경우입니다.AngularJS 부모 범위의 ng-repeat
{$parent.list}
올바른 방법이 있습니까? 나는 그것을 피할 수 있습니까?
var myApp = angular.module('myApp', []);
myApp.component('parent', {
restrict: 'E',
controller: 'parentController',
transclude: true,
template: '<h1>List</h1><div ng-transclude></div>'
}).controller('parentController', function($scope) {
\t $scope.list = ['one','two'];
});
myApp.component('child', {
restrict: 'E',
bindings: {
name: '<',
list: '<'
},
template: '<h3>Child {{$ctrl.name}}</h3>'
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
<div ng-app="myApp">
<parent>
<child list="list" ng-repeat="name in list" name="name"></child>
<child list="list" ng-repeat="name in $parent.list" name="name"></child>
</parent>
</div>