我想从 mongodb 中读出一个特定的元素
db.collection('profiles', function(err, collection) {
collection.findOne({'email': mail}, function(err, item) {
这将读取整个条目
,例如:
{
"email" : "asdd@asd.de",
"password" : "asd",
"_id" : ObjectId("51c8790f912501e403000001")
}
我怎样才能只读出其中一个元素
,例如密码
{
"password" : "asd"
}