我试图在nodejs中上传时获取图像的完整路径。我如何在代码中获取完整路径,以便使用jimp调整其大小
app.post('/getForm',function(req,rep){
if(req.files){
var thefile = req.files.file;
fileName = thefile.name;
var FilePath = "";
Jimp.read(FilePath,function(err,image){
if(err){
console.log('Error');
}
else{
image.resize(250,Jimp.AUTO)
.quality(80)
.write("upload/"+fileName)
rep.send('success');
}
});
}
});
我没有任何结果