MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come impostare il limite per la dimensione dell'array nello schema Mongoose

Con una piccola modifica alla configurazione dello schema puoi aggiungere un'opzione di convalida:

var peopleSchema = new Schema({
  name: {
    type: String,
    required: true,
    default: true
  },
  friends: {
    type: [{
      type: Schema.Types.ObjectId,
      ref: 'peopleModel'
    }],
    validate: [arrayLimit, '{PATH} exceeds the limit of 10']
  }
});

function arrayLimit(val) {
  return val.length <= 10;
}