Answer the question
In order to leave comments, you need to log in
How to pass a variable to your directive?
I don't understand how to pass a variable to a directive?$scope.param = [1,2,3];
<div test test-data="param"></div>
angular.module('testApp')
.directive('test', function () {
return {
scope: {
imgData: '@testData'
},
restrict: 'A',
link: function (scope, element, attrs) {
}
}
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question