我正在尝试在指令中使用 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
}
}
});