我对 mongodb 完全没有经验,所以我想问如何从流星集合中检索文档。我检查是否有用户的文档并用对象更新它
if (Saves.find({_id: Meteor.userId()}).fetch()) {
console.log("Before " +Saves.find({_id: Meteor.userId()}).fetch())
if (Meteor.isServer){
Saves.update( {_id: Meteor.userId(), save: save} )
}
console.log("Success " + Saves.find({_id: Meteor.userId()}).fetch())
我想通过 获取那个“保存”对象console.log
,但是现在它们都没有输出,或者[object Object]
如果我不使用fetch()
(显然输出光标对象)。