Node.js 中的 Express 是否可以有多个静态文件夹?
我正在开发一个项目,其中有一个用户上传的样式、脚本和图像的集合,然后他们是我的应用程序的样式、脚本和图像的集合。它们是我的服务器上的两个不同的位置。
无论如何,我可以在 Node.js 中设置 Express,这样它就可以有多个静态文件夹吗?我希望它能够同时服务于两者 - 显然,我会确保目录和文件名冲突。这可能吗?
目前我对一个静态文件夹的方式是这样的:
this.use(express.static(__dirname + '/public'));
...但我想要静态文件的目录。
还是有另一种完全不同的方式可以实现这一目标?
谢谢,詹姆斯
I'm working on a project where there is a user uploaded collection of styles, scripts and images and then their is my app's collection of styles, scripts and images. They're two different places on my server.
Is there anyway I can setup Express in Node.js so it can more than one static folder? I'm wanting it to serve both - obviously, I'd make sure of directory and file name conflicts. Is that even possible?
The way I have for one static folder at this moment is like this:
this.use(express.static(__dirname + '/public'));
...but I'm wanting to directories for static files.
Or is there totally different another way I could achieve this?
Thanks, James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个在文件名方面具有优先权。
The first one will have priority with regards to filenames.