mongoose findorcreate:Mongoose的简单插件为模型添加了findOrCreate方法 源码
猫鼬findOrCreate插件 简单插件,它向模型添加了findOrCreate方法。 这对于需要库很有用。 安装 npm install mongoose-findorcreate 用法 var findOrCreate = require ( 'mongoose-findorcreate' ) var ClickSchema = new Schema ( { ... } ) ; ClickSchema . plugin ( findOrCreate ) ; var Click = mongoose . model ( 'Click' , ClickSchema ) ; Click模
下载地址
用户评论