AngularJS $ inject属性注释

示例

等效地,我们可以使用$inject属性注释实现与上述相同的功能:

var MyController = function($scope) {
  // ...
}
MyController.$inject = ['$scope'];
myModule.controller('MyController', MyController);