【发布时间】:2021-06-25 23:45:13
【问题描述】:
我阅读了这个教程并尝试了一下:
https://debugmode.net/2014/01/14/how-to-upload-file-in-node-js/
html:
<form action="/post-a-file" method="post" enctype="multipart/form-data" >
<input type="file" name="file" required>
</form>
app.js:
app.post("/post-a-file", function (req, res){
var destinationFile = fs.createWriteStream(__dirname + "/movies");
req.pipe(destinationFile)
req.on('end', ()=>{ console.log("end") })
})
但/movies中没有文件。
【问题讨论】:
标签: html node.js forms file-upload node-modules