mongoose exists:猫鼬验证以确保存在引用的对象ID 源码
猫鼬存在 猫鼬验证,以确保引用的对象ID存在。 要求 NodeJS v10 + 猫鼬v5.5 + 安装 $ npm install --save mongoose-exists 用法 const mongoose = require ( 'mongoose' ) ; const exists = require ( 'mongoose-exists' ) ; const PersonSchema = new mongoose . Schema ( { name : { type : String } , father : { type : ObjectId , ref : 'Person' , exists : true } , mother : { type : ObjectId , ref : 'Person' , exists : { refresh : true } } } ) ; PersonSchema . plugin ( exists ) ; Person . create ( { } , function ( error , created
用户评论