概要 本文主要讲述在 mongodb 中,怎么更新嵌套数组的值. 使用$更新数组 基本语法 { "<array>.$" : value } 可以用于:update, findAndUpdate 等方法 $是一个占位符一样的存在.代表被匹配的数组中的一个元素 可以匹配一个数组,匹配多个是会异常 index 0: 2 - Too many positional (i.e. '$') elements found in path ... ,即:只能在一层嵌套的数组中使用 $
Name Description $inc Increments the value of the field by the specified amount. $mul Multiplies the value of the field by the specified amount. $rename Renames a field. $setOnInsert Sets the value of a field if an update results in an insert of a do