搜尋

首頁  >  問答  >  主體

mongodb - mongo 如何更新陣列的每個元素 定位符只符合第一個

現有如下格式的集合

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

現在要為每個在objectiveQuestions元素添加score字段, 並給初始值2. 請問如何構造update語句呢

迷茫迷茫2761 天前629

全部回覆(2)我來回復

  • 世界只因有你

    世界只因有你2017-04-25 09:03:49

    加個multi: true

    雷雷

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

    回覆
    0
  • 巴扎黑

    巴扎黑2017-04-25 09:03:49

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

    回覆
    0
  • 取消回覆