こんにちは、angular.jsのビデオをいくつか見ていて、value()メソッドがモジュール全体の定数の一種を設定するために使用されていることを確認しました。たとえば、Angular-UIライブラリの構成を次のように設定できます:(coffeescript)
angular.module('app',[])
.value "ui.config",
tinymce:
theme: 'simple'
width: '500'
height: '300'
そして私のアプリは現在このように見えます:
window.app = angular.module("app", [ 'ui'])
.config(["$routeProvider", ($routeProvider) ->
$routeProvider
.when "/users",
templateUrl: "assets/templates/users/index.html"
controller: IndexUsersCtrl
.otherwise redirectTo: "/users"
])
.value 'csrf', $('meta[name="csrf-token"]').attr('content') #<---- attention here
IndexUsersCtrl = ($scope) ->
$scope.users = gon.rabl
console.log "I want to log the csrf value here" #<---- then attention
IndexUsersCtrl.$inject = ['$scope']
しかし、アプリモジュールに対応する「app」変数を利用してその値を取得することはできないようです。
私はここSTとangularjsのグーグルグループで、共通コードbtwnコントローラーを共有する1つの方法はサービスを介することであると読みましたが、この概念はここでも適用されますか?
ありがとう!