Ich versuche, ein myApp.config-Modul zu erstellen, um einige Einstellungen für meine App zu speichern. Ich habe eine config.js-Datei geschrieben:
angular.module('myApp.config', [])
.constant('APP_NAME','My Angular App!')
.constant('APP_VERSION','0.3');
Ich habe es meiner app.js (eckiger Samen) hinzugefügt:
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'myApp.controllers', 'myApp.config']).
Ich habe es der Datei index.html hinzugefügt und jetzt versuche ich herauszufinden, wie ich es in meine Controller bekomme. Ich habe versucht:
angular.module('myApp.controllers', ['myApp.config'])
.controller('ListCtrl', ['$scope', 'myApp.config', function($scope, $config) {
$scope.printme = $config;
}])
aber ich bekomme:
Unbekannter Anbieter: myApp.configProvider <- myApp.config
Ich mache hier wahrscheinlich etwas falsch, irgendwelche Ideen?