未知的提供者:在我的案例中Angularjs中的提供者

时间:2014-11-30 09:51:00

标签: javascript angularjs

我尝试使用服务但失败了。我的代码如下

app.controller('AppCtrl', ['$scope', '$http', 'topicContent', function($scope, $http, topicContent){

  topicContent.request();

}]);

app.service('topicContent', ['', function(){
    return {
        request : function(){
            console.log('test');
        }
    }
}]);

我想我的依赖注入在这里出了问题..

0 个答案:

没有答案