我看到很多人使用自调用函数作为角度模块的包装器,例如
(function() {
var app = angular.module('directivesModule');
app.directive('domDirective', function () {
return {
restrict: 'A',
link: function ($scope, element, attrs) {
}
};
});
}());
这样包装有什么好处吗?或者只是编码风格的问题?
谢谢!