AngularJS的ngTransclude
transclued的定义
官方示例及解释
<div ng-controller="ctrl">
<input ng-model="title"></br>
<textarea ng-model="text"</textarea></br>
<pane title="{{title}}">
<p class="content">{{text}}<p>
</pane>
</div>app.directive('pane', function() {
return {
restrict: 'E',
transclude: true,
scope: {
title:'@'
},
template:
'<div style="border: 1px solid black;">' +
'<div style="background-color: gray">{{title}}</div>' +
'<div ng-transclude></div>' +
'</div>'
};
});使用compile函数的transclude参数
在controller里注入$transclude
Last updated