如何使用nodejs将照片上传到免费云存储而不是谷歌云,以及如何从该云或存储中检索照片?
到目前为止,我已经尝试了很多方法来分类,谷歌云需要一张信用卡,是否有任何简单的方法可以使用nodejs上传和检索图像。我正在网站内存中存储图像
var filePath = `/folder/imagesfolder/${require.file}.png`;
var tempPath = require.file.path;
var targetPath = path.join(__dirname,`../../${filePath}`);
fs.rename(tempPath,targetPath,async error=>{
if(error!=null){
console.log(error);
return respond.sendStatus(400);
}
request.session.user =await User.findByIdAndUpdate(id,{photo:filePath},{new:true});
respond.sendStatus(204);
})
我搜索了很多网站,但我没有找到任何使用nodejs存储和检索图像的网站。不过,我可以将其存储在我的网站内存中。有人能提出更好的办法吗?使用“我的网站”从internet存储中存储和检索图像。我可以使用mongodb存储图像吗?
暂无答案!
目前还没有任何答案,快来回答吧!