如何在mongodb

时间:2019-06-22 20:13:44

标签: node.js mongodb express mongoose

问题:要在“患者”文档中输入多个处方(子文档)。

我试图在单个请求中将多个子文档插入MongoDb中的文档。我使用了取消移位功能来执行相同的操作。我可以使用此路由将单个记录添加到文档中,但是我想添加n个子文档。当我尝试发送多个子文档时,仅创建了ObjectId,我无法将json数据添加到数据库

我附上我的路由和架构代码以供参考。请同样帮我。

// @route    PUT api/prescription/:patientId
// @desc     Add prescription
// @access   Private

router.put('/:patientId',auth,adminDocguard, async(req,res)=>{
    const {
        mediaction,
        dosage,
        morning,
        evening
    }=req.body;
    const newPrescription={
        mediaction,
        dosage,
        morning,
        evening
    }
    try {
        const patient_profile = await Patient.findOne({

            patientId: req.params.patientId, 

          }
          );

          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
        }
    ]

}

0 个答案:

没有答案