필터를 사용하여 ng-repeat 결과를 자식 지시문에 전달하려고하지만 무한 다이제스트주기 오류가 발생합니다.ng-repeat 필터링 된 목록을 사용자 지정 지시문에 전달하는 방법
HTML
<!DOCTYPE html>
<html>
<head>
<script data-require="[email protected]*" data-semver="4.0.0" src="https://code.angularjs.org/latest/angular.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body ng-app="myApp">
<table ng-controller="repeatCtrl">
<thead></thead>
<tr ng-repeat="x in (filteredItems = (list | filter: evens))">
<td>{{x}}</td>
</tr>
<tfoot>
<tr>
<td footer-directive="" repeat-ctrl="repeatCtrl" list='filteredItems'></td>
</tr>
</tfoot>
</table>
</body>
</html>
JS
var app = angular.module("myApp", []);
app.controller("repeatCtrl", function($scope) {
var foo = [];
for (i = 0; i < 100; i++) {
foo.push(i);
}
$scope.list = foo;
$scope.evens = function(val) {
return (val % 2 === 0);
};
});
app.directive('footerDirective', function() {
return {
restrict: 'EA',
template: 'List: {{filteredItems}}',
link: function(scope, element, attrs) { //Infinite digest loop
scope.$watch('filteredItems', function(newValue, oldValue) {
console.log(newValue);
});
}
}
});
당신은 필터링 된 목록이 제대로 채워져 있는지 볼 수 있지만, 무한이
감사합니다. 코드를 수정했습니다. 목록을 필터링 할 때 함수를 트리거하는 방법을 여전히 확실하지 않습니다. scope.filteredItems에 $ watch를 넣었지만 여전히 무한 다이제스트 루프로 연결됩니다. – Aeisys