如何在 Javascript 中创建常量文件?

发布于 2024-09-08 09:08:11 字数 515 浏览 3 评论 0原文

有没有办法在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流心雨 2024-09-15 09:08:11

这是很有可能的(正如你使用它们一样)。但它不会是一个枚举,只是一个具有多个数字字段的对象。

您应该使用对常量的脚本引用作为最顶层的引用(逻辑上)。

常见的类型有:

  • undefined(变量)
  • null(变量)
  • String
  • Boolean
  • Number
  • String
  • Object

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:

  • undefined (variable)
  • null (variable)
  • String
  • Boolean
  • Number
  • String
  • Object
很酷不放纵 2024-09-15 09:08:11

你做得对。

确保首先声明常量。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文