更新nodejs中嵌套对象的值

时间:2020-10-05 02:32:50

标签: node.js mongoose nested-object

const mongoose = require("mongoose");

const Schema = mongoose.Schema;

const instructorSchema = new Schema(
  {
    instructorID: {
      type: String,
      required: true,
      unique: true,
      trim: true,
      minlength: 3,
    },

    name: { type: String, required: true },

    dob: { type: Date, required: true },

    gender: { type: String, required: true },

    address: { type: String, required: true },

    phone: { type: Number, required: true },

    email: { type: String, required: true },

    password: { type: String, required: true },

    userRequests: [
      {
        userProfile: { type: String },
        userName: { type: String },
        weight: { type: String },
        height: { type: String },
        gender: { type: String },
        requirement: { type: String },
        assigned: { type: String },
      },
    ],
  },
  {
    timestamps: true, //it will automatically create fields when it is created or modified
  }
);

const Instructor = mongoose.model("Instructor", instructorSchema);

module.exports = Instructor;

我想为给定的userProfile(这是一个obejectID)和给定的教师(instructorID)更新需求属性的值。有人可以帮我解决nodejs路由。

我在stackoverflow上进行了检查,但没有找到答案。

0 个答案:

没有答案