gpt4 book ai didi

javascript - 为AngularJS中的常量定义函数

转载 作者:行者123 更新时间:2023-12-03 08:46:16 25 4
gpt4 key购买 nike

我正在尝试定义一个函数来保持常量,但不起作用

(function(){
'use strict';

angular
.module('app')
.constant('config1', config1)
.constant('config2',
(function(){
return {
VERSION: 2
}
}())
);

function config1() {
return {
VERSION: '1'
}
};

})();

console.log(config1.VERSION); // undefined

console.log(config2.VERSION); // 2

最佳答案

我想你错过了 config1**()**.VERSION;

关于javascript - 为AngularJS中的常量定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32876742/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com