如何在Mongoose模式中设置数组大小的限制

如何在Mongoose模式中设置数组大小的限制,第1张

如何在Mongoose模式中设置数组大小的限制

稍微调整一下架构设置,即可添加验证选项:

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5087748.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存