AngularJS:将服务注入指令?

bju*_*son 5 javascript dependency-injection d3.js angularjs

我一直在尝试将D3.js与Angular集成,并遵循本教程:http: //www.ng-newsletter.com/posts/d3-on-angular.html

本教程创建了一个包含的d3模块d3Service,并将其注入到指令中.我的应用程序结构略有不同,但每当我尝试注入d3服务时,它就会显示undefined在我的指令link函数中.我可以毫无问题地将d3服务注入我的控制器.这是我正在做的事情:

app.js:

var sentimentApp = angular.module('sentimentApp', [
  'ngRoute',
  'ngSanitize',
  'sentimentAppServices',
  'sentimentAppDirectives',
  'sentimentAppControllers'
]);
Run Code Online (Sandbox Code Playgroud)

在内部services.js,我有几个服务,其中一个是d3:

var sentimentAppServices = angular.module('sentimentAppServices', ['ngResource'])
// other services
.factory('d3', [function(){
  var d3;
  d3 = // d3 library code here
  return d3; 
}]);
Run Code Online (Sandbox Code Playgroud)

现在directives.js:

var sentimentAppDirectives = angular.module('sentimentAppDirectives', ['sentimentAppServices']);

sentimentAppDirectives.directive('lsPieChart', ['d3', function($compile, d3){
   return {
     // scope & template
     link: function($scope, elem, attr, ctrl) {
       console.log(d3); // undefined
     }
   }
Run Code Online (Sandbox Code Playgroud)

有小费吗?谢谢.

m59*_*m59 12

问题是您的暗示依赖项与您实际传入的内容不匹配:

['$compile, d3', function($compile, d3
Run Code Online (Sandbox Code Playgroud)

所以,你所做的是将d3服务作为变量传递,$compile而不是将任何东西作为变量传递d3.

它可能会帮助您理解这是为了什么.在非缩小代码中,您可以完全取出该数组包装器,如下所示:

app.directive('directiveName', function($compile, d3) {
  // ....
});
Run Code Online (Sandbox Code Playgroud)

将名称作为字符串传递的要点是因为字符串不会受到缩小的影响.这意味着angular将知道如何在这种情况下注入正确的依赖项:

 ['$compile, d3', function(a, b
Run Code Online (Sandbox Code Playgroud)

a将设置为$compile服务和b您的d3服务.