是否可以在数组字段上使用 $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}})