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}})