动态添加,链接和呈现指令

时间:2013-02-22 09:29:14

标签: javascript html angularjs

我的标记中有一个标记元素popup-window,我使用相应的指令进行处理。 如果我想要更多这样的小部件,我想在不同的地方显示或隐藏,我现在需要将所有这些元素放在我的页面标记中,我不确定看起来干净,是最好的方法。所以它看起来像这样:

<popup-window></popup-window>
<details-window></details-window>
<share-widget></share-widget>
<twitter-stream></twitter-stream>

是否可以动态地对我在DOM中动态添加的元素运行指令?我想让标记干净。

1 个答案:

答案 0 :(得分:1)

您可以使用$ compile服务来编译包含指令的模板,并将其附加到您的页面。也就是说,如果您不想在有人点击“添加推特流”按钮之前添加<twitter-stream></twitter-stream>,您可以执行以下操作:

<!doctype html>
<html ng-app="myApp">
<head>
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.angularjs.org/1.1.2/angular.min.js"></script>
    <script type="text/javascript">
    var myApp = angular.module('myApp', []);

    myApp.controller('MainCtrl', ['$scope', function($scope){

    }]);
    myApp.directive('twitterStream', function() {
        return {
            restrict: 'E',
            link: function(scope, elem, attrs) {
                elem.append('<p>A tweet: ' + Math.random() + '</p>')
            }
        }
    });
    myApp.directive('createTwitterStreamButton', ['$compile', function($compile) {
        return {
            restrict: 'E',
            template: '<button ng-click="add()">Add twitter stream</button>',
            replace: true,
            link: function(scope, elem, attrs) {
                scope.add = function() {
                    var directiveElement = $compile('<twitter-stream></twitter-stream>')(scope);
                    directiveElement.insertAfter(elem);
                }
            }
        }
    }]);
    </script>
</head>
<body ng-controller="MainCtrl">
    <create-twitter-stream-button></create-twitter-stream-button>
</body>
</html>