假设我有一个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');
Mike Cluck.. 14
您正在导出具有这些属性的对象.您可以直接使用该对象获取它们:
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尚不支持开箱即用的解构.
您正在导出具有这些属性的对象.您可以直接使用该对象获取它们:
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尚不支持开箱即用的解构.
在ES6(ECMAScript 2015)中,您可以使用对象解构:
const { first, second, third } = require('./path/to/first_file.js');