, Angular , ( Angular - ) .
, , , . , Angular, .. , - , .
app.service('myService', function () {
});
() , , :
1.
-, . , , :
app.controller('MyController', function ($http, myService) {
});
2. Inline Array Annotation
, - ( ). , . Angular .
app.controller('MyController', ['$http', 'myService', function ($h, m) {
$h.x="Putting some value";
}]);
3. $inject
- $inject -property :
function MyController($http, myService) {
}
MyController.$inject = ['$http', 'myService'];
app.controller('MyController', MyController);
, , , , , JavaScript, . Angular , . , .
2 3, 1 /. 3, , , .
, . Angular .