我试图建立一个myApp.config模块来存储我的应用程序的一些设置,我写了一个config.js文件:
angular.module('myApp.config', [])
.constant('APP_NAME','My Angular App!')
.constant('APP_VERSION','0.3');
我将其添加到我的app.js(角种子)中:
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'myApp.controllers', 'myApp.config']).
我将其添加到index.html文件,现在我试图弄清楚如何在控制器中获取它,我尝试了:
angular.module('myApp.controllers', ['myApp.config'])
.controller('ListCtrl', ['$scope', 'myApp.config', function($scope, $config) {
$scope.printme = $config;
}])
但我得到:
未知提供者:myApp.configProvider <-myApp.config
我在这里做错什么了,有什么主意吗?