当前位置:  开发笔记 > 编程语言 > 正文

使用角度常数

如何解决《使用角度常数》经验,为你挑选了1个好方法。

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

'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在认证后设置适当的值(从输入模型的视图中检索)并能够从任何控制器访问它.



1> henkieee..:

你没有正确地注入常数.

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

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有