I have recently come across transclusion in directives, what is the purpose of having this concept. As far as I know its encapsulation of an object and have 2-way binding possibly. But this can be possible by using '=' in the scope attribute in directive. So whats the big deal about directive?
What is the main use of transclusion in angularjs
958 Views Asked by Uday Reddy At
2
There are 2 best solutions below
0

My main use is to relocate the inner contents of a directive to wherever the ngTransclude
is inside the template of the directive.
http://plnkr.co/edit/aQ7SG58g0njSerM8FsNz?p=preview
var app = angular.module('myApp', []);
app.directive('wrapMe', [function () {
return {
restrict: 'E',
transclude: true,
template: '<span>Stuff before [<b ng-transclude></b>] Stuff after</span>'
};
}]);
Transclude allows :
ngTransclude and $transclude
linking phase
( or $transclude inside directive controllers ) is a$transclude function
which allows you to clone the transcluded contents , apply it to a scope and reinsert it to the DOM when you need.I recommend these tutorials:
Some angular built-in directives (ng module) use the
transclude
option:In the docs
Actually, that's not so accurate, it applies only to the default behavior of angular.js built-in directives and the default behavior of the $transclude function when invoked without scope argument.
The $transclude function allows you to apply any scope you need as an optional first argument: