角度指令模板和儿童指令包含

时间:2015-06-23 18:32:30

标签: javascript angularjs asp.net-mvc-4 angularjs-directive angularjs-ng-transclude

我正在开发一套角度指令来驱动我正在为知识库应用程序工作的工具栏。

我遇到的问题是让我的父指令处理嵌套在其中的子指令,该指令与父指令上的模板有关。

我想尝试这样的概念,

-Toolbar - >按钮组 - > - >按钮

所以我有三个指令

XYZ-工具栏 XYZ-工具栏按钮组 XYZ-工具栏按钮

工具栏指令仅限于A,属性。按钮组和按钮是限制E(仅限元素)。

每个指令都有独立的范围,(我通过指令中的控制器链接传递内容。)

问题是我想在按钮组指令(内联)中使用模板,并让它包含任何按钮。

例如,我有这样的标记(这是asp.net MVC中的主模板),它是部分视图,可以在工具栏将呈现的标题中加载。

<kb-toolbar>
    <kb-toolbar-button-group>
        <kb-toolbar-button kb-toggle="ng-class: Button.Toggled ? 'fa fa-2x fa-save': 'fa fa-2x fa-edit'" ng-attr-title="Button.Title">{{!Button.IsToggle ? Button.Text: ''}}</kb-toolbar-button>
    </kb-toolbar-button-group>
</kb-toolbar>

现在我有一个kb-toolbar指令

    app.modules.main.directive("kbToolbar", function () {
    return {
        scope: {},
        restrict: 'A',
        link: function ($scope, element, attrs) {

        },
        controller: function ($scope) {
            var buttonGroups = new Array();
            this.addButtonGroup = function (buttonGroup) {
                buttonGroups.push(buttonGroup);
            }

            $scope.buttonGroups = buttonGroups;
        }
    }
});

然后按钮组

    app.modules.main.directive("kbToolbarButtonGroup", function () {
    return {
        scope: {},
        restrict: 'E',
        replace: true,
        link: function ($scope, element, attrs) {
            console.log(element);
        },
        compile: function(element, attrs) {
            var content = element.children();
            console.log(content);
        },
        controller: function ($scope) {
            //TODO
        },
        template: '<ul class="nav navbar-nav">' +
            + '' + //I Don't know what to put in here, this is where the child directive needs to go
            '</ul>'
    };
});

最后是按钮

    app.modules.main.directive("kbToolbarButton", function () {
    return {
        scope: {},
        restrict: 'E',
        replace: true,
        link: function ($scope, element, attrs) {

        },
        controller: function ($scope) {
            //TODO
        },
        template: '<li><a href="">SomeButtonCompiled</a></li>'
    }
});

所以基本问题是kb-toolbar-button-group呈现无序列表,但不包含子节点。所以我需要在模板中添加一些东西&#34;&#34;在该指令上使其包含kb-toolbar-button。

1 个答案:

答案 0 :(得分:5)

您可以通过在transclude指令中使用kbToolbarButtonGroup来实现此目的,以便在您提及的元素内呈现子内容ng-transclude

<强>指令

app.modules.main.directive("kbToolbarButtonGroup", function () {
    return {
        scope: {},
        restrict: 'E',
        replace: true,
        transclude: true,
        link: function ($scope, element, attrs) {
            console.log(element);
        },
        compile: function(element, attrs) {
            var content = element.children();
            console.log(content);
        },
        controller: function ($scope) {
            //TODO
        },
        template: '<ul class="nav navbar-nav">' +
            + '<ng-transclude></ng-transclude>' //added transclude here that will load child template here
            +'</ul>'
    };
});