http://plnkr.co/edit/a9ayjHwPjQaFNnuEB4oC?p=preview
var app = angular.module('plunker', []);
app.controller('MainCtrl', ['$scope', '$http', 'extraService', function ($scope,$http,extraService) {
$scope.name = 'World';
console.log(extraService);
}]);
app.service('extraService',function(){
return 'abc';
});
为什么我的控制台没有返回“abc”?