MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

So legen Sie ein Limit für die Arraygröße im Mongoose-Schema fest

Mit einer kleinen Änderung an Ihrem Schema-Setup können Sie eine Validierungsoption hinzufügen:

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