ng-repeat в поп-овской угловой директиве

Я пытаюсь использовать boot-strap over-angular. Я создал директиву и пытаюсь динамически прикрепить содержимое, используя $compile. Однако $ compile не заменяет моего содержимого. Вот скрипка.

http://jsfiddle.net/gurukashyap/4ajpyjyf/

customDirectives = angular.module('customDirectives', []);
function MyCtrl($scope) {
    $scope.items = ['abc','dev','it'];


}

    customDirectives.directive('custPopover', function ($compile) {
        return {
            scope : {
                items : '=items'  
            }, 
            restrict: 'A',

            template: '<span>Label</span>',
            link: function (scope, el, attrs) {
                scope.label = attrs.popoverLabel;
                var temp = '<ul><li ng-repeat="item in items">{{item}}</li></ul>';
                var contents = $compile(temp)(scope);
                console.log(scope);
                $(el).popover({
                    trigger: 'click',
                    html: true,
                    content:  contents,
                    placement: attrs.popoverPlacement
                });
            }
        };
    });

    angular.module('CustomComponents', ['customDirectives']);

Любая помощь оценена

2 ответа

Решение

Вы только что передали параметр неправильно. items: '=newvar'

http://jsfiddle.net/4ajpyjyf/2/

В HTML вы не переименовываете атрибут из "newvar" в "items".

Другие вопросы по тегам