我正在尝试将这些数据保存到我的mongodb
数据库中:
var Student_Answers = {
matricNumber: matric,
Answers: answers //This is the array answers = ["A", "B"]
};
这是我的模式:
var Student_AnswersSchema = mongoose.Schema({
matricNumber: String,
Answers: [
{
type: String
}
]
});
这是触发保存功能的地方
var save = SA(req.body).save(function(err, data) {
if (err) throw err;
res.json(data);
});
矩阵出现在数据库中,数组名称也出现在数据库中,但永远不会出现在数组的内容中