使用猫鼬保存字符串数组

时间:2019-12-23 12:10:33

标签: javascript node.js mongodb express mongoose

我正在尝试将这些数据保存到我的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);
});

矩阵出现在数据库中,数组名称也出现在数据库中,但永远不会出现在数组的内容中

enter image description here

0 个答案:

没有答案