AngularJSでは、定義されているモジュールで使用できるプライベートコントローラまたはサービスを作成できますが、注入された別のモジュールでは使用できません。例えば、PrivateControllerは子供モジュールにプライベート行うことができAngular Module Private Members
:
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