javascript - How to pass $q to angular directive link function? - Stack Overflow

I need to use $q a link function of my directive. I need it to wrap possible promise that is retuned by

I need to use $q a link function of my directive. I need it to wrap possible promise that is retuned by one of arguments (see the example below). I don't know however, how to pass $q dependency to a this function.

angular.module('directives')
 .directive('myDirective', function() {
   return {
     scope: {
       onEvent: '&'
     }
     // ...
     link: function($scope, $element) {
       $scope.handleEvent() {
         $q.when($scope.onEvent()) {
            ...
         }
       }
     }
  }
}

I need to use $q a link function of my directive. I need it to wrap possible promise that is retuned by one of arguments (see the example below). I don't know however, how to pass $q dependency to a this function.

angular.module('directives')
 .directive('myDirective', function() {
   return {
     scope: {
       onEvent: '&'
     }
     // ...
     link: function($scope, $element) {
       $scope.handleEvent() {
         $q.when($scope.onEvent()) {
            ...
         }
       }
     }
  }
}
Share Improve this question asked Oct 28, 2014 at 10:49 mrzasamrzasa 23.4k11 gold badges60 silver badges96 bronze badges 1
  • You've got some pretty weird and probably broken syntax in that link function, by the way. – Thomas Commented Oct 28, 2014 at 10:52
Add a ment  | 

3 Answers 3

Reset to default 14

Just add it as a dependency on your directive and the $q will be usable in the link function. This is because of JavaScript's closures.

Below is an example based on your code.

angular.module('directives')
.directive('myDirective', ['$q', function($q) {
   return {
     scope: {
       onEvent: '&'
     }
     // ...
     link: function($scope, $element) {
       $scope.handleEvent() {
         $q.when($scope.onEvent()) {
           ...
         }
       }
     }
  }
}])
var module = angular.module('directives');
module.directive('myDirective', ['$q', function($q) {
 ...
}]);

You can't inject into the link function directly, but you can inject into the directive's factory function:

angular.module('directives')
 .directive('myDirective', function($q) {
   ...

Or use the array syntax for injection if you use a minifier.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743580486a4474180.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信