我正在尝试使用Multer上传文件,然后将它们发送到Cloudinary进行存储。
发送到本地目录时成功,但发送到Cloudinary时成功 我没有收到该程序或Cloudinary的反馈。
app.get('/', function(req, res){
res.render('index.html');
});
app.post('/upload', multer(multerConfig).single('photo'),function(req, res){
cloudinary.uploader.upload(req.file.path,{tags:'basic_sample'},function(result){
console.log(result)
});
};
);
答案 0 :(得分:0)
我没有使用mutler,而是使用connect-multiparty,它再完美不过了。
https://github.com/highskillzz/Gotemps/
这是我使用过的项目。但是我已经将它用于文件上传,所以只需关心这一方面