ディレクティブでngRepeatを使用しようとしていますが、実際にはその方法がわかりません。私は閉じていますか?
Mowersは、このディレクティブが使用されるコントローラー内の配列です。
.directive('slider', function() {
return function() {
template: '<slider><film><frame ng-repeat="mower in mowers">{{mower.series}}</frame></film></slider>';
replace: true;
scope: true;
link: function postLink(scope, iElement, iAttrs) {
// jquery to animate
}
}
});