Im wondering if there is a way to pass an argument to a directive?
What I want to do is append a directive from the controller like this:
$scope.title = "title";
$scope.title2 = "title2";
angular.element(document.getElementById('wrapper')).append('<directive_name></directive_name>');
Is it possible to pass an argument at the same time so the content of my directive template could be linked to one scope or another?
here is the directive:
app.directive("directive_name", function(){
return {
restrict:'E',
transclude:true,
template:'<div class="title"><h2>{{title}}</h3></div>',
replace:true
};
})
What if I want to use the same directive but with $scope.title2?
You can pass arguments to your custom directive as you do with the builtin Angular-directives - by specifying an attribute on the directive-element:
What you need to do is define the
scope
(including the argument(s)/parameter(s)) in the factory function of your directive. In below example the directive takes atitle
-parameter. You can then use it, for example in thetemplate
, using the regular Angular-way:{{title}}
Depending on how/what you want to bind, you have different options:
=
is two-way binding@
simply reads the value (one-way binding)&
is used to bind functionsIn some cases you may want use an "external" name which differs from the "internal" name. With external I mean the attribute name on the directive-element and with internal I mean the name of the variable which is used within the directive's scope.
For example if we look at above directive, you might not want to specify another, additional attribute for the title, even though you internally want to work with a
title
-property. Instead you want to use your directive as follows:This can be achieved by specifying a name behind the above mentioned option in the scope definition:
Please also note following things:
data-
. Angular supports this by stripping thedata-
-prefix from any attributes. So in above example you could specify the attribute on the element (data-title="title2"
) and internally everything would be the same.<div data-my-attribute="..." />
while in code (e.g. properties on scope object) they are in the form ofmyAttribute
. I lost lots of time before I realized this.You can try like below:
it sets up a two-way binding between the value of the 'accept' attribute and the parent scope.
And also you can set two way data binding with property: '='
For example, if you want both key and value bound to the local scope you would do:
For more info, https://docs.angularjs.org/guide/directive
So, if you want to pass an argument from controller to directive, then refer this below fiddle
http://jsfiddle.net/jaimem/y85Ft/7/
Hope it helps..
here is what I did
I'm using directive as html attribute and I passed parameter as following in my HTML file.
my-directive="push"
And from the directive I retrieved it from the Mouse-click event object.event.target.getAttribute('my-directive')
.Here is how I solved my problem:
Directive
Controller
I now can use different scopes through the same directive and append them dynamically.