如何在 Javascript 中创建常量文件?
有没有办法在 JavaScript 中创建一个常量文件,我可以引用然后使用它? 我正在寻找的是这样的:
Constants.js:
var Phones =
{
诺基亚:1,
三星:2
然后
,在另一个 JavaScript 文件 JS2.js 中访问这些值: JS2.js:
警报(电话。诺基亚);
然后,在使用它们的 aspx 文件中,引用它们,例如:
这样的架构可能吗?我们可以使用哪些数据类型?我只举例说明了枚举,因为这是我现在使用的,但它们必须在使用时在同一个文件中声明。
Is there a way to create a file of constants in JavaScript, which I can reference and then use?
What I am looking for is something like this:
Constants.js:
var Phones =
{
Nokia: 1,
Samsung: 2
}
Then, in another JavaScript file JS2.js access those values:
JS2.js:
alert(Phones.Nokia);
And then, in an aspx file that uses them, reference both of them, like:<asp:ScriptReference Path="../js/JS2.js" />
<asp:ScriptReference Path="../js/Constants.js" />
Is such an architecture possible? What datatypes can we use? I only exemplified enums because this is what i use right now, but they must be declared in the same file as they are used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是很有可能的(正如你使用它们一样)。但它不会是一个枚举,只是一个具有多个数字字段的对象。
您应该使用对常量的脚本引用作为最顶层的引用(逻辑上)。
常见的类型有:
It is very much possible (exactly as you use them). It won't be an enum though, just an object with several numeric fields.
You should use the script reference to constants as the topmost one (logically).
The common types are:
你做得对。
确保首先声明常量。
JavaScript 按自上而下的顺序解析所有脚本和脚本文件链接。
you're doing it right.
make sure the constants are declared first.
JavaScript parses alls scripts and script file links in top down order.