带有Scope数据数组的AngularJS指令

时间:2013-09-23 16:43:27

标签: javascript angularjs

我是一个阵列。数组的每个项都包含指令的数据。该数组是在控制器内创建的。

模型

$scope.myDirectiveData = 
          [ { title: "First title", content: "First content" }, 
            { title: "Second title", content: "Second content" } ];

指令模板

<div class="MyDirective">
   <h1>{{myDirectiveData.title}}</h1>
   <p>{{myDirectiveData.content}}</p>
</div>

我应该如何实现指令来为数组中的任何项创建项?有点像...

<MyDirective data-ng-repeat="item in myDirectiveData"></MyDirective>

2 个答案:

答案 0 :(得分:4)

以下是使用指令的示例。它使用ng-repeat为作用域中数组中的每个对象调用指令。在这个小提琴中,这就是你要找的东西。

http://jsfiddle.net/gLRxc/4/

angular.module('test', [])

.directive('myDirective', function () {
    var template = '<div class="MyDirective">' +
        '<h1>{{ data.title }}</h1>' +
        '<p>{{ data.content }}</p>' +
        '</div>';
    return {
        template: template,
        scope: {
            data: '='
        },
        link: function (scope, element, attrs) {

        }

    };
})

.controller('TestController', function ($scope) {

    $scope.myDirectiveData = [
            { title: "First title", content: "First content" },
            { title: "Second title", content: "Second content" }
        ];


})
;

Html编辑:ng-repeat与指令在同一行,就像您的问题所述。

<div ng-app="test" ng-controller="TestController">
     <div my-directive data="item" ng-repeat="item in myDirectiveData"></div>
</div>

答案 1 :(得分:0)

<div ng-repeat="item in myDirectiveData">
  <h1>{{item.title}}</h1>
  <p>{{item.content}}</p>
</div>