2

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

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

我试图有一个这样的概念,

-工具栏->按钮组->->按钮

所以我有三个指令

xyz 工具栏 xyz 工具栏按钮组 xyz 工具栏按钮

工具栏指令是限制 A,仅属性。按钮组和按钮是 Restrict 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 呈现无序列表,但不包含子级。因此,我需要在该指令的模板“”中添加一些内容,以使其包含 kb-toolbar-button 在其中。

4

1 回答 1

5

您可以通过使用transcludeinsidekbToolbarButtonGroup指令来实现这一点,以便在您提到的元素内呈现子内容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>'
    };
});
于 2015-06-23T18:45:10.737 回答