标签: csv express upload
从邮递员向我们的前端发布CSV会返回req.files.file为未定义。这是我们当前的代码:
app.post('/upload', (req, res) => { const file = req.files.file console.log(file); // Prints Undefined return res.json({msg: 'it works'});
因此,如代码 file 中所述,将在终端中打印未定义的内容。有建议吗?