📌  相关文章
📜  mongoose 获取所有大文件 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:35.155000             🧑  作者: Mango

代码示例1
var query = templateData.find({}).stream();
query.on('data', function (doc) {
    // do something with the mongoose document
}).on('error', function (err) {
    // handle the error
}).on('close', function () {
    // the stream is closed
});