72

アプリの設定を保存する myApp.config モジュールを作成しようとしています。config.js ファイルを作成しました。

angular.module('myApp.config', [])
    .constant('APP_NAME','My Angular App!')
    .constant('APP_VERSION','0.3');

app.js (angular-seed) に追加しました:

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

私はおそらくここで何か間違ったことをしているのですが、何かアイデアはありますか?

4

4 に答える 4