最佳答案
我试图构建一个 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
我可能做错了什么,有什么想法吗?