db.users.find({},{projection})注意:filter实现的是筛选出 某条数据,projection实现的是筛选出某条数据的具体字段
比如筛选不包含_id字段db.users.find({},{_id:false})
如果为true就是包含