如何获取模型中所有文档的数组?

时间:2011-04-27 09:06:54

标签: mongoose

myModel.find({},function(err,models){

的console.log(models.toJSON()); //错误:对象没有toJSON方法

})

1 个答案:

答案 0 :(得分:1)

你几乎拥有它,但你需要使用JSON.stringify()而不是toJSON():

myModel.find({}, function(err, models){
  console.log(JSON.stringify(models));
})