我有几个 javascript 文件,其中包含我的节点应用程序的不同部分。使用以下逻辑需要它们。我想从 file2.js 访问一个 file1.js 中的函数,但到目前为止收效甚微。任何帮助将不胜感激,谢谢。
app.js:这是我启动服务器并包含所有快速路由的文件。
require(path_to_file+'/'+file_name)(app, mongoose_database, config_file); //Require a bunch fo files here in a loop.
file1.js:这是使用上述代码所需的示例文件。
module.exports = function(app, db, conf){
function test() { //Some function in a file being exported.
console.log("YAY");
}
}
file2.js:这是使用上述代码所需的另一个文件。我想从这个文件(file2.js)中访问 file1.js 中的一个函数。
module.exports = function(app, db, conf){
function performTest() { //Some function in a file being exported.
test();
}
}