来自mongodb&的NodeJS访问变量写入JSON文件

时间:2016-11-24 00:13:58

标签: json node.js mongodb

我需要从我的mongodb数据库写一个字段到一个json文件。使用节点js。怎么去呢?我还没有发现任何有用的东西。

1 个答案:

答案 0 :(得分:0)

试试这个

var exportDocuments = function (db, callback) {
    // Get the documents collection 
    var collection = db.collection('documents');
    // Find some documents 
    collection.find({}).toArray(function (err, docs) {
        require('fs').writeFile('yourFileName.json', JSON.stringify(docs), function (error) {
            if (error) return callback(error);
            callback();
        });
    });
}