sql >> Database >  >> NoSQL >> MongoDB

Hoe een limiet in te stellen voor de arraygrootte in het Mongoose-schema

Met een kleine aanpassing aan uw schemaconfiguratie kunt u een valideringsoptie toevoegen:

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


  1. Mongo-interface

  2. Speculatieve uitvoering in Hadoop MapReduce

  3. MongoDB:hoe het aantal sleutels in een document te tellen?

  4. Mongoose find() RegExp voor veld Nummertype