gpt4 book ai didi

javascript - 有没有办法在 NodeJS 文件范围动态中获取变量名?

转载 作者:太空宇宙 更新时间:2023-11-04 02:54:54 25 4
gpt4 key购买 nike

我需要一种方法来动态调用文件中的变量,在前端,如果您在函数外部创建变量,则将其放在窗口对象上,然后您可以使用

获取它
window['nameOfVar']

我尝试用this而不是nodejs中的窗口来实现,但我什么也没得到。

const self  = this;
var temp = 'im dynamic'

console.log(self['temp']) // this will print undefined in nodejs

有没有办法实现这种行为

最佳答案

is there a way to achieve this behavior

是的,但你不想使用它。

您所描述的内容在浏览器中有效,因为顶级作用域是全局的,并且使用 var 的顶级全局变量在全局对象上创建属性,可以通过 window 访问该属性。它在 Node.js 中不起作用,因为默认情况下 Node.js 将您的代码作为模块运行,而模块顶层的代码不在全局范围内,因此在该代码中使用 var 不会在全局对象上创建属性(并且没有 window global 用于访问全局对象,尽管 Node.js 确实有 global - 但不要使用它)。

不要做那么长的事情,而是使用您自己的对象和属性:

const stuff = {
one: "I'm one",
two: "I'm two"
};

for (let i = 0; i < 5; ++i) {
const name = Math.random() < 0.5 ? "one" : "two";
console.log(stuff[name]);
}

关于javascript - 有没有办法在 NodeJS 文件范围动态中获取变量名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55006040/

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