gpt4 book ai didi

javascript - 如何在 NodeJS 的 javascript 中一次导入多个变量?

转载 作者:数据小太阳 更新时间:2023-10-29 05:41:38 24 4
gpt4 key购买 nike

假设我有一个 javascript 模块 first_file.js:

var first = "first",
second = "second",
third = "third";

module.exports = {first, second, third};

如何在一行中将这些导入到另一个文件中?以下仅导入 third:

var first, second, third = require('./path/to/first_file.js');

最佳答案

您正在导出具有这些属性的对象。您可以直接使用对象获取它们:

var obj = require('./path/to/first_file.js');
obj.first;
obj.second;
obj.third;

或者使用解构:

var { first, second, third } = require('./path/to/first_file.js');

从 4.1.1 版开始,Node.js 还不支持开箱即用的解构。

关于javascript - 如何在 NodeJS 的 javascript 中一次导入多个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34683391/

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