首页 > 代码库 > [AngularJS] Best Practise - Minification and annotation
[AngularJS] Best Practise - Minification and annotation
Annotation Order:
It‘s considered good practice to dependency inject Angular‘s providers in before our own custom ones.
Bad:
// randomly ordered dependenciesfunction SomeCtrl (MyService, $scope, AnotherService, $rootScope) {}
Good:
// ordered Angular -> customfunction SomeCtrl ($scope, $rootScope, MyService, AnotherService) {}
Minification methods, automate it
Use ng-annotate
for automated dependency injection annotation, as ng-min
is deprecated.
With our function declarations outside of the module references, we need to use the @ngInject
comment to explicitly tell ng-annotate
where to inject our dependencies. This method uses $inject
which is faster than the Array syntax.
Manually specifiying the dependency injection arrays costs too much time.
Bad:
function SomeService ($scope) {}// manually declaring is time wastingSomeService.$inject = [‘$scope‘];angular .module(‘app‘) .factory(‘SomeService‘, SomeService);
Good:
// Using the ng-annotate keyword @ngInject to instruct things that need annotating:/** * @ngInject */function SomeService ($scope) {}angular .module(‘app‘) .factory(‘SomeService‘, SomeService);
Will produce:
/** * @ngInject */function SomeService ($scope) {}// automatedSomeService.$inject = [‘$scope‘];angular .module(‘app‘) .factory(‘SomeService‘, SomeService);
[AngularJS] Best Practise - Minification and annotation
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。