8、db.count(query, callback)

作用:

计数。与 find 用法相同。

示例:

  1. // Count all planets in the solar system
  2. db.count({system:'solar'},function(err,count){
  3. // count equals to 3
  4. });
  5. // Count all documents in the datastore
  6. db.count({},function(err,count){
  7. // count equals to 4
  8. });