I have this directive definition and want to pass currentScriptPath
to the TestController
.
How do I do that?
(function(currentScriptPath){
angular.module('app', [])
.directive('test', function () {
return {
restrict: 'E',
scope: {},
templateUrl: currentScriptPath.replace('.js', '.html'),
replace: true,
controller: TestController,
controllerAs: 'vm',
bindToController: true
};
});
})(
(function () {
var scripts = document.getElementsByTagName("script");
var currentScriptPath = scripts[scripts.length - 1].src;
return currentScriptPath;
})()
);
TestController.$inject = ['$scope'];
function TestController($scope) {
// try to access $scope.currentScriptPath here
}
As you want to access
currentScriptPath
in your directive controller. You need to only attach that variable into your current scope insidelink
function of directive & that scope would be makecurrentScriptPath
available to you controllerTestController
scope because you have usedbindToController: true,
in your directive.Markup
Directive
Controller
Demo Plunkr