Node.js 中的 Express 是否可以有多个静态文件夹?

发布于 2024-11-28 21:49:47 字数 347 浏览 0 评论 0原文

我正在开发一个项目,其中有一个用户上传的样式、脚本和图像的集合,然后他们是我的应用程序的样式、脚本和图像的集合。它们是我的服务器上的两个不同的位置。

无论如何,我可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御守 2024-12-05 21:49:47
this.use(express.static(__dirname + '/public1'));
this.use(express.static(__dirname + '/public2'));

第一个在文件名方面具有优先权。

this.use(express.static(__dirname + '/public1'));
this.use(express.static(__dirname + '/public2'));

The first one will have priority with regards to filenames.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文