angularjs – ngInject在下面的代码中做了什么?

前端之家收集整理的这篇文章主要介绍了angularjs – ngInject在下面的代码中做了什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
AngularJS控制器代码
function AuthConfig($stateProvider,$httpProvider) {
  'ngInject';

  // Define the routes
  $stateProvider

  .state('app.login',{
    url: '/login',templateUrl: 'auth/auth.html',title: 'Sign in'
  })

  .state('app.register',{
    url: '/register',title: 'Sign up'
  });

};

export default AuthConfig;

我无法弄清楚ngInject的用途.有人可以帮帮我吗?

‘ngInject’;什么都不做,它只是一个字符串文字.名为ng-annotate的工具使用它作为标志:如果函数以’ngInject’开头,则它将由ng-annotate处理.

基本上,ng-annotate将会改变

angular.module("MyMod").controller("MyCtrl",function($scope,$timeout) {
    "ngInject";
    ...
});

angular.module("MyMod").controller("MyCtrl",["$scope","$timeout",$timeout) {
    "ngInject";
    ...
}]);

为了使代码缩小安全.

如果您没有使用ng-annotate,则可以安全地忽略或删除表达式.但要小心,如果项目使用ng-annotate,您可能会破坏项目的构建过程.
有关ng-annotate及其功能的更多信息,请参阅https://github.com/olov/ng-annotate

猜你在找的Angularjs相关文章