Я пытаюсь ввести несколько элементов в массив mongodb, используя функцию "$ push". Используя приведенный ниже код, я могу добавить один элемент в массив, но когда я пытаюсь добавить несколько элементов в массив, добавляется только идентификатор объекта, который не проходит. Я пробовал много запросов формата JSON с использованием POSTMAN, но ни один из которых, кажется, не работает. Пожалуйста, помогите мне понять проблему.
Экспресс-маршрут:
// @route PUT api/prescription/:patientId
// @desc Add prescription
// @access Private
router.post('/:patientId',auth,adminDocguard, async(req,res)=>{
const {
mediaction,
dosage,
morning,
evening
}=req.body;
var newPrescription={
mediaction,
dosage,
morning,
evening
}
console.log(newPrescription)
try {
const patient_profile = await Patient.findOneAndUpdate(
{patientId:req.params.patientId},
{"$push":{"prescription":newPrescription}},
{"upsert":true,"new":true}
);
//patient_profile.prescription.unshift(newPrescription);
await patient_profile.save();
res.json(patient_profile);
} catch (err) {
console.error(err.message);
res.status(500).send('Server Error');
}
});
module.exports=router;
Схема Монго
const mongoose= require('mongoose');
autoIncrement = require('mongoose-auto-increment');
const config =require('config');
const db=config.get('mongoURI');
var connection = mongoose.createConnection(db);
autoIncrement.initialize(connection);
const PatientSchema = new mongoose.Schema({
name:{
type:String,
required: true
},
phonenumber:{
type:Number,
required:true
},
date: {
type: Date,
default: Date.now
},
slider_1:{
type:Number,
required: true
},
slider_2:{
type:Number,
required:true
},
slider_3:{
type:Number,
required:true
},
prescription:[
{
mediaction:{
type:String
},
dosage:{
type:Number
},
morning:{
type:Number
},
evening:{
type:Number
}
}
]
});
PatientSchema.plugin(autoIncrement.plugin, {
model:'Patient',
field:'patientId',
startAt:1,
incrementBy:1
});
module.exports=Patient=mongoose.model('patient',PatientSchema);
запрос JSON
{
"prescription": [
{
"mediaction": "Crocin123",
"dosage": 200
},
{
"mediaction": "Crocin456",
"dosage": 200
}
]
}