mongodb - mongo 如何更新数组的每个元素 定位符只匹配第一个
迷茫
迷茫 2017-04-25 09:01:49
0
2
589

现有如下格式的集合

"objectiveQuestions" : [{ "answer" : "A", "index" : 2, "isCorrect" : 1, "subjectId" : 5967 }, { "subjectId" : 5968, "answer" : "A", "isCorrect" : 0, "index" : 3 }, ...]

现在要为每个在objectiveQuestions元素添加score字段, 并给初始值2. 请问如何构造update语句呢

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all (2)
世界只因有你

加个multi: true

db.collection.update( , , { upsert: , multi: , writeConcern:  } )

http://docs.mongodb.org/manual/reference/method/db.collection.update/

    巴扎黑

    update({},{"$setOnInsert":{'score': 2}}, True, True)

      Latest Downloads
      More>
      Web Effects
      Website Source Code
      Website Materials
      Front End Template
      About us Disclaimer Sitemap
      php.cn:Public welfare online PHP training,Help PHP learners grow quickly!