我正在使用mongo和nodejs,并且我尝试将response
对象添加到question
对象
这是我正在使用的模型的一部分:
questions: [
{
name: String,
responses: [
{
username: String,
reply: String
}
]
}
]
我试图"推动"对responses
的回复如此:
for(var i = 0; i < req.body.response.length && i < survey.questions.length; i++) {
var response = req.body.response[i];
if(response.trim() == "") continue;
// survey.questions[i].responses.push({
var responseIndex = "questions[" + i + "].responses";
Survey.findByIdAndUpdate(survey._id, {
"$addToSet" : { responseIndex : {
username: (req.user ? req.user.username : null),
reply: response
} }
}, function(error, survey) {
if(error) {
console.log(error);
}
console.log(survey);
});
}
然而,问题在于它创建了一个没有数据的新问题对象。任何见解将不胜感激!
编辑:这是整个调查模型
/// <reference path="../../typings/tsd.d.ts" />
var mongoose = require("mongoose");
var schema = new mongoose.Schema({
surveyName: String,
creator: String,
created: {
type: Date,
default: Date.now
},
questions: [
{
name: String,
responses: [
{
username: String,
reply: String
}
]
}
]
});
module.exports = mongoose.model('Survey', schema);
// exports.Survey = mongoose.model('Survey', schema);
答案 0 :(得分:1)
如果需要在数组中添加对象,则应使用$push函数,因为question
模型中有subdocument。
在你的情况下,内心,你可以做到这一点:
Survey.findById(survey._id, function(error, res) {
for(var i = 0; i < req.body.response.length && i < survey.questions.length; i++) {
var response = req.body.response[i];
if(response.trim() == "") continue;
(res.questions[i]).responses.push(response);
}
res.save(function(error, res) {
// survey updated with responses.
}
}
让我知道这是否有效。