我已经看到了很多关于StackOverflow的讨论ng-transclude的问题,但没有解释在外行人的术语是什么。
文档中的描述如下:
Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion.
这是相当混乱。有人能够用简单的术语来解释ng-transclude是为了做什么,以及它可能在哪里使用?
Transclude是一个设置,告诉角度捕获在标记中的指令内部的所有内容,并在指令的模板中使用它在某处(实际上ng-transclude在哪里)。有关详细信息,请参阅创建包含其他元素的指令部分(
documentation of directives)。
原文链接:https://www.f2er.com/angularjs/147759.html如果编写自定义指令,则在指令模板中使用ng-transclude来标记要插入元素内容的点
angular.module('app',[]) .directive('hero',function () { return { restrict: 'E',transclude: true,scope: { name:'@' },template: '<div>' + '<div>{{name}}</div><br>' + '<div ng-transclude></div>' + '</div>' }; });
如果你把这个在你的标记
<hero name="superman">Stuff inside the custom directive</hero>
它会显示如下:
Superman
Stuff inside the custom directive
完整示例:
Index.html
<body ng-app="myApp"> <div class="AAA"> <hero name="superman">Stuff inside the custom directive</hero> </div> </body>
jscript.js
angular.module('myApp',[]).directive('hero',template: '<div>' + '<div>{{name}}</div><br>' + '<div ng-transclude></div>' + '</div>' }; });
可视化: