我在这里有这段代码:
if(fs.existsSync('./example/example.js')){
cb(require('../example/example.js'));
}else{
cb();
}
为什么应该fs.existSync
使用不同的目录而不是require
?
这将是目录树,不包括不需要的东西......(我正在使用 express btw)
\example
example.js
\routes
index.js <-- this is the one where I am using this code
app.js <-- this one requires index.js and calls its functions using app.get('/example',example.index);