我在数据库中有 20 多个产品,我正在尝试显示所有产品,所以我使用了
Product.find({}).toArray(function(err,data){
if(err){
res.send(err)
}
if(data){
res.send(data)
}
}
但我收到一个错误
TypeError: Product.find(...).toArray is not a function
所以我用
Product.find({},function(err,products){
if(err){
res.send(err)
}
if(products){
res.send(products)
}
})
但它只打印出 20 个产品。所以我试过了
Product.find({},function(err,products){
if(err){
res.send(err)
}
if(products){
res.send(products)
}
}).limit(300)
但它仍然打印出 20 个产品
守着一只汪
慕少森
相关分类