mongodb $push 重复怎么办

一、$push

$push 操作符添加指定的值到数组中,不去重。

例如:添加一个值到数组中:

db.students.update(
   { _id: 1 },
   { $push: { scores: 89 } }
)

添加多个值到数组中

db.students.update(
   { name: "joe" },
   { $push: { scores: { $each: [ 90, 92, 89 ] } } }
)

结果:

scores:[89,90,92,89]

二、$addToSet

mongodb 新版本(2.3)中有一个 $addToSet 这个方法向数组中增加值,自动去重复。

例如:添加一个值到数组中

db.students.update(
{'name':'joe'}, 
{'$addToSet':{scores:89}}
);

添加多个值到数组中

db.students.update(
{'name':'joe'}, 
{'$addToSet':{scores:{'$each':[90, 92, 89]}}
);

结果:

scores:[89,90,92]

云海天教程网,大量的免费MongoDB入门教程,欢迎在线学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » mongodb $push 重复怎么办