我正在尝试从集合中的文档中检索单个字段作为对象
有我的代码:
const field = await db
.collection('mycollection')
.find({
itemid: 378
})
.project({ status: 1 });
console.log("The field status is: " + field.status);
输出:
The field status is: undefined