我使用以下命令在数据库中存储一个单词:
collection.update({},{$set:{word:newWord}},{upsert:true},function(){
collection.find().nextObject(function(err, results) {
oldWord = results;
console.log("New Word: " + results);
});
});
这是我的数据库的一个例子
{ "_id" : ObjectId("4ff92def446ce41df5692385"), "word" : "asdf" }
每次到达 console.log 行时,它看起来像:
New Word: [object Object]
我试图从上述记录中分离出“asdf”(无引号)。我已经尝试了从 toArray、nextObject 等的所有内容。
我错过了什么?我已经尝试了几个小时!