什么是ng-transclude?

我在StackOverflow上看到了很多关于ng-transclude的问题,但是没有一个用门外汉的术语解释它是什么。

文档中的描述如下:

指示符,该指示符标记最近的使用透光的父指示符的透光DOM的插入点。

这相当令人困惑。有人能用简单的术语解释ng-transclude的目的是什么以及它可能在哪里使用吗?

90724 次浏览

translude是一个设置,它告诉angular捕获标记中指令内的所有内容,并在指令模板中的某处使用它__abc1。在指令文档创建一个包装其他元素的指令部分阅读更多信息。

如果你编写一个自定义指令,你可以在指令模板中使用ng- transinclude来标记你想要插入元素内容的点

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>

它会像这样显示:

超人

自定义指令里面的东西

完整的例子:

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', function () {
return {
restrict: 'E',
transclude: true,
scope: { name:'@' },
template: '<div>' +
'<div>\{\{name}}</div><br>' +
'<div ng-transclude></div>' +
'</div>'
};
});

Output markup

enter image description here

可视化:

enter image description here

这是一种yield,来自element.html()的所有内容都呈现在那里,但指令属性在特定范围内仍然可见。

对于那些来自React世界的人来说,这就像React的{props.children}