我有请求处理程序将文件从MongoDB(GridFS)发送到客户端,如下所示,但它使用data
变量,因此内容在内存中。我需要在流模式下进行此操作并将文件以块的形式发送给客户端。我无法确定如何pipe
缓冲响应。看看第二个代码 - 它不起作用,但展示我需要的东西。
可能它很有用:GridFS中的数据是Base64编码的,但如果流式传输效率更高,则可能会更改。
内存中版
router.get('/get/:id', function(req,res){
getById(req.params.id, function(err, fileId){
new GridStore(db, fileId, "r").open(function(err, gridStore) {
res.set('Content-Type', gridStore.contentType);
var stream = gridStore.stream(true);
var data = '';
stream.on("data", function(chunk) {
data += chunk;
});
stream.on("end", function() {
res.send(new Buffer(data, 'base64'));
});
});
});
});
流媒体模式
router.get('/get/:id', function(req,res){
getById(req.params.id, function(err, fileId){
new GridStore(db, fileId, "r").open(function(err, gridStore) {
res.set('Content-Type', gridStore.contentType);
var stream = gridStore.stream(true);
stream.on("data", function(chunk) {
new Buffer(chunk, 'base64').pipe(res);
});
stream.on("end", function() {
res.end();
});
});
});
});
更新
我想我已接近解决这个问题了。我发现这有效,但不能从Base64解码:
new GridStore(db, fileId, "r").open(function(err, gridStore) {
res.set('Content-Type', gridStore.contentType);
gridStore.stream(true).pipe(res);
});
答案 0 :(得分:1)
我找到了解决方案,但认为可以更好。我使用base64-stream模块解码Base64流。解决方案如下:
router.get('/get/:id', function(req,res){
getById(req.params.id, function(err, fileId){
new GridStore(db, fileId, "r").open(function(err, gridStore) {
res.set('Content-Type', gridStore.contentType);
gridStore.stream(true).pipe(base64.decode()).pipe(res);
});
});
});
答案 1 :(得分:1)
exports.sendFile = function(db, res, fileId) {
var grid = require('gridfs-stream');
var gfs = grid(db, mongoose.mongo);
var on_error = function(){
res.status(404).end();
};
var readstream = gfs.createReadStream({
filename: fileId,
root: 'r'
});
readstream.on('error', function(err) {
if (('\'' + err + '\'') === '\'Error: does not exist\'') {
return on_error && on_error(err);
}
throw err;
});
return readstream.pipe(res);
}
答案 2 :(得分:0)
stream.on("data", function(chunk) {
res.send(chunk.toString('utf8'));
});