我正在尝试使用GridFS下载保存在mongoDB中的+ 200M二进制文件。我的问题是下载无法启动。我正在使用带有mongodb和gridfs-stream的nodejs。
在routes.js中:
router.get('/getlog',function(req,res) {
if (req.isAuthenticated())
{
var mongo = require('mongodb');
var Grid = require('gridfs-stream');
var db = new mongo.Db('logApp', new mongo.Server("127.0.0.1", 27017));
db.open(function (err) {
if (err)
return handleError(err);
});
var gfs = Grid(db, mongo);
var id = req.query.id;
gfs.exist({_id: id}, function (err, found) {
if (err) return handleError(err);
if (!found)
res.send('Error on the database looking for the file.')
});
var readStream = gfs.createReadStream({
_id: id
}).pipe(res);
}
else
res.redirect('/login');
});
在我看来的某处:
td #[a(href="getlog?id=#{log.logId}", download="logfile") #[span(name='log').glyphicon.glyphicon-download]]
从nodejs log生成响应:
GET /getlog?id=55818770b276172922b945b8 - - ms - -
但下载永远不会开始......我不知道发生了什么......
答案 0 :(得分:1)
变化
gfs.exist({_id: id}, function (err, found) {
if (err) return handleError(err);
if (!found)
res.send('Error on the database looking for the file.')
});
var readStream = gfs.createReadStream({
_id: id
}).pipe(res);
到
gfs.exist({_id: id}, function (err, found) {
if (err) return handleError(err);
if (!found)
return res.send('Error on the database looking for the file.');
gfs.createReadStream({_id: id}).pipe(res);
});
请尝试。