1

在我的模型中,我有这样的东西:

subjects: {
    Mathematics: {
      questionsanswered: [
        "x+2=3, solve for x please",
        "How do you write an expression that represents all quadrantal angles?"
      ],
      questionsasked: [
        "how to convert sin to cos?",
        "factor the trinomial: 3x^2+7x+2"
      ]
    }
}

如您所见,有很多子元素,我完全是 Mongoose 和 Node.js 的初学者,我正在尝试在questionsanswered数组字段中添加另一个问题(字符串)。我查阅了文档并尝试了

userModel.update({username: username},{$pushAll: { subjects:{Mathematics:{questionsasked:['what is the definition of calculus']}}}},{upsert:true},function(err){
                if(err){
                        console.debug(err);
                }else{
                        console.debug("Successfully added");
                }
        });

但它说'Modifier $pushAll allowed for arrays only',有人知道如何在questionsanswered数组中插入另一个元素吗?非常感谢!

4

1 回答 1

0

$pushAll现在已弃用。

要将一个元素添加到现有数组中,只需使用$push

userModel.update({ username }, { $push: {
  'subjects.Mathematics.questionsasked': 'value'
}});

要添加元素(如果不存在),请使用addToSet

userModel.update({ username }, { $addToSet: {
  'subjects.Mathematics.questionsasked': 'unique value'
}});

要添加多个元素,请使用$each

userModel.update({ username }, { $push: {
  'subjects.Mathematics.questionsasked': { $each: ['value1', 'value2'] }
}});
于 2017-10-21T21:38:54.863 回答