嗨,我看了一些 angular.js 的视频,看到 value ()方法被用来设置一种模块范围的常量。例如,可以这样设置 Angular-UI 库的配置:
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 模块相对应的“ app”变量来获得这个值。
我在 ST 和 angularjs 的 google 组上读到,共享通用代码 btwn 控制器的一种方式是通过一个服务,这个概念也适用于这里吗?
谢谢!