node.js connect-form 图片上传到tmp目录

发布于 2024-12-08 19:48:24 字数 341 浏览 0 评论 0原文

我使用 connect-form 上传图像并表达 https://github.com/visionmedia/express/blob/cbdd907393e6fc9cf4eb092237241d1626a9a98d/examples/multipart/app.js

图像保存到 /tmp 目录。 我想将其从 /tmp 更改为应用程序上下文中的某个目录。我该怎么做?

I uploading the images using connect-form and express as in https://github.com/visionmedia/express/blob/cbdd907393e6fc9cf4eb092237241d1626a9a98d/examples/multipart/app.js.

The images get saved to /tmp directory.
I want to change it from /tmp to some directory that is within the application context. How can I do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

与君绝 2024-12-15 19:48:24

您可以设置

req.form.uploadDir = "<your_path>"; 

并将文件保存在固定路径中。

You can set

req.form.uploadDir = "<your_path>"; 

and the file is saved in the fixed path.

相守太难 2024-12-15 19:48:24

您可以使用 utils.pump 将文件移动到其他一些目录。

You can use utils.pump to move the file to some other dir.

不…忘初心 2024-12-15 19:48:24

最好是配置 uploadDir :

app.use(express.bodyParser({uploadDir:__dirname+'/uploads'}));

best is to configure uploadDir :

app.use(express.bodyParser({uploadDir:__dirname+'/uploads'}));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文