0

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 ログから応答を生成します。

GET /getlog?id=55818770b276172922b945b8 - - ms - -

しかし、ダウンロードは開始されません...そして、何が起こっているのかわかりません..

4

1 に答える 1

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);
        });

してみてください。

于 2015-06-18T09:57:23.080 に答える