gpt4 book ai didi

javascript - Angular 指令模板和子指令包含

转载 作者:行者123 更新时间:2023-11-29 16:57:39 27 4
gpt4 key购买 nike

我正在开发一组 Angular Directive(指令)来驱动我正在为知识库应用开发的工具栏。

我遇到的问题是让我的父指令处理嵌套在其中的关于父指令模板的子指令。

我想有一个这样的概念,

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

所以我有三个指令

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

工具栏指令是 restrict A, attribute only。按钮组和按钮为Restrict E(仅限元素)。

每个指令都有独立的范围,(我通过指令中的 Controller 链接来传递东西。)

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

例如,我有这样的标记(这是 asp.net MVC 中的主模板),它是一个局部 View ,加载到工具栏将呈现的标题中。

<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。

最佳答案

您可以通过在 kbToolbarButtonGroup 指令中使用 transclude 来实现此目的,以便在您提到 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>'
};
});

关于javascript - Angular 指令模板和子指令包含,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31010762/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com