文件未保存在服务器上。path属性返回undefined。
const uploadProfile = (req, res) => {
const form = formidable.IncomingForm();
form.uploadDir = `./images`;
form.keepExtensions = true;
form.parse(req, (err, fields, files) => {
if (err) {
return res.json("Formidable cannot parse the form");
}
console.log(files.image.path);
res.json(files.image.path);
});
};
2条答案
按热度按时间wi3ka0sx1#
阅读有关从V1迁移到V2或V3的信息
zwghvu4y2#
请尝试::文件.图像.原始文件名