0

是否可以在数组字段上使用 $unset 运算符并删除与查询匹配的元素。例如,我试图从字段“文件”数组中删除 35。

{
  _id : 1,
  files : [1,12,35,223]
}
// Ive tried this but it does not work
db.col.update({_id : 1}, {$unset : { files : 35}})
// or this does not work
db.col.update({_id : 1}, {$unset : { "files.35" : 1}})
4

2 回答 2

2

您是否尝试过$pull 运算符?如:

db.col.update({_id: 1}, {$pull: {files: 35}})
于 2013-02-01T18:03:27.827 回答
0

您可以使用$pull代替:

db.col.update({ _id : 1 }, {$pull: { files : 35 } })

于 2013-02-01T18:03:57.743 回答