是否有可能让它返回一个输出?
你好.js
var y = 1;
console.log(x);
console.log(y);
main.js
var x = 42;
var magic = somehowInclude('hello.js');
当您main.js
使用节点运行时,它会打印42
并1
require
没有and可以做到这一点exports
吗?
是否有可能让它返回一个输出?
你好.js
var y = 1;
console.log(x);
console.log(y);
main.js
var x = 42;
var magic = somehowInclude('hello.js');
当您main.js
使用节点运行时,它会打印42
并1
require
没有and可以做到这一点exports
吗?
使用 Node.js 模块。
你好.js
module.exports.magic = function (x) {
var y = 1;
console.log(x);
console.log(y);
};
main.js
var x = 42;
var hello = require('./hello.js');
hello.magic(42);
阅读Node.js 文档中关于模块加载系统的详细描述。