How to do field selection on find() in the mongodb native driver?

前端 未结 4 1079
遇见更好的自我
遇见更好的自我 2021-02-19 07:52

I am using the mongodb native driver for node.js and can\'t get to work the field selection. What I want to do is to limit fields to name. I do not want the \'last\' in the outp

4条回答
  •  爱一瞬间的悲伤
    2021-02-19 08:09

    If you are using latest mongodb 3.0 nodejs driver, then try this code:

    db.collection('test').find({}).project({name: 1, last: 1}).toArray();
    

提交回复
热议问题