我有简单的app.js包含简单变量,例如:
app.js
const HW = "Hello, world!";
var config = require('./config');
如何从config.js访问该HW变量? config.js
console.log(HW);
app.js中的导出是否确实在config.js中显示了它?
答案 0 :(得分:0)
为了查看在另一个js文件中声明的变量,您必须将其导出到该文件中,并在需要引用该变量的文件中导入/要求它。因此,如果app.js中有一个名为HW的const变量,则必须导出 它:
app.js
const HW = "Hello, world!";
module.exports.HW = HW;
然后将其导入您的其他文件:
config.js
var HW = require("app.js").HW;
console.log(HW);