我从收集中删除了所有记录,但我遇到了这种情况:
db.getCollection('myCollection').find({}).count() --> **OUTPUT IS A NUMBER > 0**
db.getCollection('myCollection').find({}) --> **Fetched 0 record(s) in 1ms**
为什么会这样?
提前致谢
答案 0 :(得分:-1)
db.getCollection('myCollection').find({}).count();
返回记录数,(类型编号)
其中
db.getCollection('cosmome_values').find({});
将返回记录数组(类型数组)