我正在使用yeoman角全堆栈样板。

'use strict';

class SignupController {
    // Logic for signup.
}

angular.module('myApp')
  .controller('SignupController', SignupController);


如何为特定控制器进行依赖项注入?

最佳答案

角全堆栈生成器似乎包含ng-annotate,它将为您生成注入代码。
您可能可以执行以下操作:

class Service {
  /* @ngInject */
  constructor($scope, $state) {

  }
}

10-06 04:52