在AngularJS中,是否可以創建專用控制器或服務,這些私人控制器或服務可以在它們定義的模塊中使用,但不能由注入的其他模塊使用。Angular模塊私人會員
例如,可以PrivateController爲私有的子單元:
angular.module('Child', [])
.controller('PublicController', function ($scope){
$scope.children = ['Bob', 'Sue'];
})
.controller('PrivateController',function ($scope){
$scope.redHeadedStepChildren = ['Billy', 'Mildred'];
})
angular.module('Parent', ['Child'])
<div ng-app="Parent">
<div ng-controller='PublicController'>
<div ng-repeat='child in children'>
{{child}}
</div>
</div>
<div ng-controller='PrivateController'>
<div ng-repeat='child in redHeadedStepChildren'>
{{child}}
</div>
</div>
</div>
這裏是一個小提琴來說明這一點:jsfiddle.net/6uux843h/1 – daniel1426