0
---插入---更新的ArrayList大小的MongoDB集合中的計數
db.mycollection.insert({'foo':[1,2,3,4]})
db.mycollection.insert({'foo':[5,6,7]})
--ArrayList計數---
db.mycollection.aggregate({$project: { count: { $size:"$foo" }}})
我想ArrayList中的計數來更新我的收藏尺寸。
非常感謝Ares :)它的工作就像魅力:) – Art