88

您好,我正在观看一些 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']

但我似乎无法通过利用与应用程序模块对应的“应用程序”变量来获得该值。

我在 ST 和 angularjs 的 google 组上读到过,共享公共代码 btwn 控制器的一种方法是通过服务,这个概念也适用于这里吗?

谢谢!

4

3 回答 3

149

Module.value(key, value)用于注入可编辑值, Module.constant(key, value)用于注入常量值

两者之间的区别不在于您“无法编辑常量”,而在于您无法使用 $provide 拦截常量并注入其他内容。

// define a value
app.value('myThing', 'weee');

// define a constant
app.constant('myConst', 'blah');

// use it in a service
app.factory('myService', ['myThing', 'myConst', function(myThing, myConst){
   return {
       whatsMyThing: function() { 
          return myThing; //weee
       },
       getMyConst: function () {
          return myConst; //blah
       }
   };
}]);

// use it in a controller
app.controller('someController', ['$scope', 'myThing', 'myConst', 
    function($scope, myThing, myConst) {
        $scope.foo = myThing; //weee
        $scope.bar = myConst; //blah
    });
于 2012-10-22T16:33:33.537 回答
4

我最近想在测试中将此功能与 Karma 一起使用。正如 Dan Doyon 指出的那样,关键是您可以像控制器、服务等一样注入一个值。您可以将 .value 设置为许多不同的类型 - 字符串、对象数组等。例如:

myvalues.js 一个包含值的文件 - 确保它包含在您的 karma conf 文件中

var myConstantsModule = angular.module('test.models', []);
myConstantModule.value('dataitem', 'thedata');
// or something like this if needed
myConstantModule.value('theitems', [                                                                                                                                                                                                             
  {name: 'Item 1'},                                                                                                                                                                                                                         
  {name: 'Item 2'},                                                                                                                                                                                                                         
  {name: 'Item 3'}
]);                                                                                                                                                                                                                         

]);

test/spec/mytest.js - 也许这是 Karma 加载的 Jasmine 规范文件

describe('my model', function() {
    var theValue;
    var theArray;
    beforeEach(module('test.models'));
    beforeEach(inject(function(dataitem,theitems) {
      // note that dataitem is just available
      // after calling module('test.models')
      theValue = dataitem;
      theArray = theitems;
    });
    it('should do something',function() {
      // now you can use the value in your tests as needed
      console.log("The value is " + theValue);
      console.log("The array is " + theArray);
    });
});
于 2013-05-18T15:10:58.453 回答
2

You need to reference csrf in your controller IndexUsersCtrl = ( $scope, csrf )

IndexUsersCtrl.$inject = [ '$scope', 'csrf' ]
于 2012-10-22T16:27:50.013 回答