使用ES6模块的ReadDirsync映射文件
在我的节点项目中,我使用的是ES6导入,而不是CONCORJS'require()
。
我发现这个片段可以通过文件夹映射,然后将文件作为第二个参数插入app.use.use()
:
readdirSync('./routes').map(r => app.use('/', require('./routes/' r)));
我可以将其转换为ES6导入语法吗?
In my Node project I'm using es6 imports instead of commonjs' require()
.
I've found this snippet to map through a folder and insert the files as the second argument to app.use()
:
readdirSync('./routes').map(r => app.use('/', require('./routes/' r)));
Can I translate this to es6 import syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下操作:
try this: