我正在学习node.js,我正在创建一个小应用程序,我可以上传图像并在图库中显示它们。
目前我有一个表格,可以通过POST
将图像上传到服务器extends ../layout
block content
.col-sm-6.col-sm-offset-3
h1 control panel
form(action="/upload", method="POST",
enctype="multipart/form- data")
input(type="file", name='image')
input(type="submit", value="Upload Image")
然后使用mongoose
将文件插入mongodbexports.upload = function (req, res) {
fs.readFile(req.files.image.path, function (err, data) {
var imageName = req.files.image.name;
if(!imageName){
console.log("seems to be an
error this file has not got a name");
res.redirect("/");
res.end();
}else{
var newimage = new Image();
newimage.img.data = fs.readFileSync(req.files.image.path);
newimage.img.name = imageName;
newimage.save(function (err, a) {
if (err){
console.log("There was an error saving the image")
res.redirect("/");
res.end();
}
res.redirect("/gallery");
});
}
});
}
在我的图库控制器中,我查询数据库中的所有图像并将它们传递给前端。
exports.gallery = function (req, res) {
Image.find({}, function(err, image){
if (err)
res.send(err);
else
res.render("site/gallery", {images: image });
});
}
然后在我的图库中,我尝试为每个图像创建一个新的图像标记
extends ../layout
block content
h1 Gallery
each image in images
img(src='#{image.img.data}')
我的问题是我一直收到404错误,因为浏览器找不到图像。 但我有一种感觉,我可能会以错误的方式解决这个问题。我见过GridFS但我觉得它不适合这个应用程序,因为图库中的图像数量将少于20个。我是否正确地采用这种方式,或者我应该将图像存储在服务器上并以这种方式检索它们?
答案 0 :(得分:0)
您通常会将图像上传到服务器的计算机文件系统或静态资产云托管服务(如AWS S3),并仅在数据库中存储图像的 URL 。 / p>
您还可以使用Cloudinary等解决方案。