我尝试使用服务但失败了。我的代码如下
app.controller('AppCtrl', ['$scope', '$http', 'topicContent', function($scope, $http, topicContent){
topicContent.request();
}]);
app.service('topicContent', ['', function(){
return {
request : function(){
console.log('test');
}
}
}]);
我想我的依赖注入在这里出了问题..