我有这个名为' panel'。
的自定义指令<panel title="One Title">
One Body
<panel title="Two Title">two</panel>
</panel>
我的问题是我无法获取嵌套的panel指令来渲染。有关javascript的信息,请参阅plunkr http://plnkr.co/edit/D0LfQqBViuraSNfmym4g?p=preview。
我希望
<div>
<h1>One Title</h1>
<div>
One Body
<div>
<h1>Two Title</h1>
<div>Two Body</div>
</div>
</div>
</div>
</div>
但我得到了
<div>
<h1>One Title</h1>
<div>One Body</div>
</div>
正如您将看到的,我的目标是渲染来自控制器提供的数据的输出,而不是操纵dom。我正在探索使用指令作为收集数据并将其提供给控制器的方法,以便模板可以仅从控制器提供的数据中呈现。因此,我正在寻找一种不在div上使用ng-transclude的解决方案,而是使用$ compile和/ transclude(范围,乐趣......)的某种组合来实现所述目标。我的目标也在于更好地理解如何有效地使用$ compile和transclude(范围,有趣......)。
答案 0 :(得分:1)
这并不简单,因为您愿意依赖ng-bind-html
。
让我们先看看这个:
transclude(scope, function(clone, scope){
panelCtrl.setBody($sce.trustAsHtml(clone.html()));
});
上述函数中的clone
将包含子panel
指令的注释占位符,如下所示:
One Body
<!-- panel: undefined -->
这是因为子面板指令有transclude: 'element'
,其链接功能尚未运行。
要修复这很容易,只需稍微修改一下代码:
var clone = transclude(scope, function () {});
panelCtrl.setBody($sce.trustAsHtml(clone.html()));
这样clone
将包含一个真实的模板:
One Body
<div class="ng-scope"><h1 class="ng-binding">{{panel.title}}</h1><div class="inner ng-binding" ng-bind-html="panel.body"></div></div>
不足为奇,我们现在有了一个真实的模板,但绑定尚未发生,所以我们目前仍然无法使用clone.html()
。
真正的问题开始了:我们如何知道绑定何时完成
AFAIK,我们无法确切知道。但要解决这个问题,我们可以使用$timeout
!
通过使用$timeout
,我们打破了正常的编译周期,所以我们必须找到一些方法让父面板指令知道子指令的绑定已经完成(在$timeout
中)。
一种方法是使用控制器进行通信,最终代码如下所示:
app.controller('PanelCtrl', function($scope, $sce) {
$scope.panel = {
title: 'ttt',
body: $sce.trustAsHtml('bbb'),
}
this.setTitle = function(title) {
$scope.panel.title = title;
};
this.setBody = function(body) {
$scope.panel.body = body;
};
var parentCtrl,
onChildRenderedCallback,
childCount = 0;
this.onChildRendered = function(callback) {
onChildRenderedCallback = function () {
callback();
if (parentCtrl) {
$timeout(parentCtrl.notify, 0);
}
};
if (!childCount) {
$timeout(onChildRenderedCallback, 0);
}
};
this.notify = function() {
childCount--;
if (childCount === 0 && onChildRenderedCallback) {
onChildRenderedCallback();
}
};
this.addChild = function() {
childCount++;
};
this.setParent = function (value) {
parentCtrl = value;
parentCtrl.addChild(this);
};
});
app.directive('panel', function($compile, $sce, $timeout) {
return {
restrict: 'E',
scope: {},
replace: true,
transclude: 'element',
controller: 'PanelCtrl',
require: ['panel', '?^panel'],
link: function(scope, element, attrs, ctrls, transclude) {
var panelCtrl = ctrls[0];
var parentCtrl = ctrls[1];
if (parentCtrl) {
panelCtrl.setParent(parentCtrl);
}
var template =
'<div>' +
' <h1>{{panel.title}}</h1>' +
' <div class="inner" ng-bind-html="panel.body"></div>' +
'</div>';
var templateContents = angular.element(template);
var compileTemplateContents = $compile(templateContents);
element.replaceWith(templateContents);
panelCtrl.setTitle(attrs.title);
var clone = transclude(scope, function () {});
panelCtrl.onChildRendered(function() {
panelCtrl.setBody($sce.trustAsHtml(clone.html()));
compileTemplateContents(scope);
});
}
}
});
示例Plunker: http://plnkr.co/edit/BBbWsUkkebgXiAdcnoYE?p=preview
我在侦探中留下了很多console.log()
,你可以看一下真正发生的事情。
PS。如果你不使用ng-bind-html
并且只允许DOM操作或使用@WilliamScott的回答中的内容,那么事情会容易得多。
答案 1 :(得分:0)
简化指令会导致我认为你的目标:
app.directive('panel', function(){
return {
restrict: 'E',
template:'<div><h1>{{panel.title}}</h1><div ng-transclude></div></div>',
scope: {},
transclude: true,
controller: 'PanelCtrl',
link: function(scope, element, attrs, panelCtrl)
{
panelCtrl.setTitle(attrs.title);
}
}
})
这是plunkr。