我需要从我的mongodb数据库写一个字段到一个json文件。使用节点js。怎么去呢?我还没有发现任何有用的东西。
答案 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();
});
});
}