如果我在这样的文件中设置一些常量:

'use strict';

angular.module('balrogApp.config', [])
    .constant('balrogConfig', {
        'backend': 'http://127.0.0.1:8000/api/catalog',
        'authenticatedUser': 1
    });


如何从控制器访问它? :

'use strict';

angular.module('balrogApp.header', ['balrogApp.config'])
    .controller('headerController', ['balrogConfig', function ($location, Users, balrogConfig) {
        this.usersList = Users.query();

        this.currentUser = balrogConfig.authenticatedUser;
        /* ... */
    }])


这种方式适用于工厂,但不适用于控制器。那么如何正确导入和使用我的常量呢?

另外,有没有一种方法可以从视图设置常量?

基本上,我想在身份验证后将authenticatedUser设置为适当的值(从输入模型的视图中检索),并能够从任何控制器访问它。

最佳答案

您没有正确注入常量。

['$location', 'Users', 'balrogConfig', function ($location, Users, balrogConfig)

08-18 21:57