使用 GridFs 从 mongoDB 中读取和显示图像
Reading and Displaying images from mongoDB using GridFs
我已经能够使用 GridFs 成功地将图像上传到 mongoDB。
以下是我数据库中的图片:
fs.files:
fs.chunks:
下面是我用来上传图片的代码:
var Grid = require('gridfs-stream');
var mongoose = require("mongoose");
Grid.mongo = mongoose.mongo;
var gfs = new Grid(mongoose.connection.db);
app.post('/picture', function(req, res) {
var part = req.files.filefield;
var writeStream = gfs.createWriteStream({
filename: part.name,
mode: 'w',
content_type:part.mimetype
});
writeStream.on('close', function() {
return res.status(200).send({
message: 'Success'
});
});
writeStream.write(part.name);
writeStream.end();
});
问题:
我似乎无法弄清楚如何从 mongoDB 读取此图像并将其显示在 HTML <img>
标记的前端。
到目前为止我已经试过了但是它只显示文件名:
app.get('/picture', function(req, res) {
gfs.files.find({ filename: 'trooper.jpeg' }).toArray(function (err, files) {
if(files.length===0){
return res.status(400).send({
message: 'File not found'
});
}
res.writeHead(200, {'Content-Type': files[0].contentType});
var readstream = gfs.createReadStream({
filename: files[0].filename
});
readstream.on('data', function(chunk) {
res.write(chunk);
});
readstream.on('end', function() {
res.end();
});
readstream.on('error', function (err) {
console.log('An error occurred!', err);
throw err;
});
});
});
我从 here
中获取了上面的代码
谁能帮忙。我已经坚持了好几天了!!!!
确实应该
writeStream.write(part.data);
不是
writeStream.write(part.name);
我已经能够使用 GridFs 成功地将图像上传到 mongoDB。 以下是我数据库中的图片:
fs.files:
fs.chunks:
下面是我用来上传图片的代码:
var Grid = require('gridfs-stream');
var mongoose = require("mongoose");
Grid.mongo = mongoose.mongo;
var gfs = new Grid(mongoose.connection.db);
app.post('/picture', function(req, res) {
var part = req.files.filefield;
var writeStream = gfs.createWriteStream({
filename: part.name,
mode: 'w',
content_type:part.mimetype
});
writeStream.on('close', function() {
return res.status(200).send({
message: 'Success'
});
});
writeStream.write(part.name);
writeStream.end();
});
问题:
我似乎无法弄清楚如何从 mongoDB 读取此图像并将其显示在 HTML <img>
标记的前端。
到目前为止我已经试过了但是它只显示文件名:
app.get('/picture', function(req, res) {
gfs.files.find({ filename: 'trooper.jpeg' }).toArray(function (err, files) {
if(files.length===0){
return res.status(400).send({
message: 'File not found'
});
}
res.writeHead(200, {'Content-Type': files[0].contentType});
var readstream = gfs.createReadStream({
filename: files[0].filename
});
readstream.on('data', function(chunk) {
res.write(chunk);
});
readstream.on('end', function() {
res.end();
});
readstream.on('error', function (err) {
console.log('An error occurred!', err);
throw err;
});
});
});
我从 here
中获取了上面的代码谁能帮忙。我已经坚持了好几天了!!!!
确实应该
writeStream.write(part.data);
不是
writeStream.write(part.name);