node.js connect-form 图片上传到tmp目录
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以设置
并将文件保存在固定路径中。
You can set
and the file is saved in the fixed path.
您可以使用 utils.pump 将文件移动到其他一些目录。
You can use utils.pump to move the file to some other dir.
最好是配置 uploadDir :
best is to configure uploadDir :