node对mongodb的查询操作返回指定字段

在网上查了好久都没找到相关的文章,还好自己去查了下node操作mongodb文档,现在分享给有需要的学者;顺便记录下
例:
const mongoClient = require(‘mongodb’).MongoClient;
let url = “mongodb://localhost:27017/student”;

mongoClient.connect(url, { useNewUrlParser: true }, function (err, db) {
if (err) throw err;
// console.log(“数据库创建成功”);
let dbase = db.db(“student”); //数据库名称

//查询
使用find({},{_id:0});是无法去除id字段的;
如:
dbase.collection(“site”).find({},{_id:0,age:1,height:1,name:1}).toArray(function(err,res){
if(err) throw err;
console.log(res);
db.close();
})
使用project({_id:0});即可去除
dbase.collection(“site”).find({}).project({_id:0,age:1,height:1,name:1}).toArray(function(err,res){
if(err) throw err;
console.log(res);
db.close();
})
}

你可能感兴趣的:(nodejs)