1. 首页
  2. 移动开发
  3. 其他
  4. mongoose exists:猫鼬验证以确保存在引用的对象ID 源码

mongoose exists:猫鼬验证以确保存在引用的对象ID 源码

上传者: 2021-04-02 06:03:38上传 ZIP文件 55.9KB 热度 15次
猫鼬存在 猫鼬验证,以确保引用的对象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
用户评论