在我的主模块中声明的常量在其他模块/服务中不可用?

时间:2014-11-25 19:01:32

标签: javascript angularjs firebase

我在主模块上声明了一个常量,它以角度链接其他模块:

.constant('FIREBASE_URL', 'https://demo.firebaseio.com')

不幸的是,我似乎无法将其传递给其他模块的其他控制器和服务。有没有办法绕过这个或我错过的东西?

更详细地编辑:

//add the constant to the main module
    angular.module('app', [
          'home',
          'subscribe'
        ])
        .config(config)
        .run(run)
        .controller('MainCtrl', MainCtrl)
        .value('version', '1.0.1')
        .constant('FIREBASE_URL', 'https://talllly.firebaseio.com')
        });
      });

angular
        .module('subscribe')
        .factory('Subscribe', Subscribe);

    function Subscribe($firebase, FIREBASE_URL) {
        var Subscriptions = {
            subscribeStatus: subscribeStatus, //try to use FIREBASE_URL in this function
            loginStatus : loginStatus
        };

0 个答案:

没有答案