8、db.count(query, callback)
作用:
计数。与 find 用法相同。
示例:
// Count all planets in the solar system
db.count({system:'solar'},function(err,count){
// count equals to 3
});
// Count all documents in the datastore
db.count({},function(err,count){
// count equals to 4
});
当前内容版权归 腾讯AlloyTeam 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 腾讯AlloyTeam .