Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
myModel.find({}, function(err, models){
console.log(models.toJSON()); //エラー: オブジェクトには toJSON メソッドがありません
}))
ほとんどの場合、toJSON() の代わりに JSON.stringify() を使用する必要があります。
myModel.find({}, function(err, models){ console.log(JSON.stringify(models)); })