标签: mongoose
myModel.find({},function(err,models){
的console.log(models.toJSON()); //错误:对象没有toJSON方法
})
答案 0 :(得分:1)
你几乎拥有它,但你需要使用JSON.stringify()而不是toJSON():
myModel.find({}, function(err, models){ console.log(JSON.stringify(models)); })