我有一个常量文件。
var app = angular.module('ops.services');
app.constant('opsConstants', {
GAID: 'UA1'
});
app.service('OpsConstantService', OpsConstantService);
OpsConstantService.$inject = ['opsConstants'];
function OpsConstantService(opsConstants){
this.OPSCONSTANTS = opsConstants;
}
现在在一个单独的文件中,我试图访问相同的
DefaultConfig.$inject = ['OpsConstantService'];
function DefaultConfig(OpsConstantService) {
debugger;
我在这里得到undefined
。
如何解决这个问题?