其他分享
首页 > 其他分享> > mongoose纲要和模型(schema&model)

mongoose纲要和模型(schema&model)

作者:互联网

根据纲要(Schema)和dataBase中的集合(Collection)创建模型(Model)

const userSchema= new mongoose.Schema({
  // definition:定义,释义,清晰...
  name:String,
  age:Number,
  childs:[childSchema]//对Schema进行嵌套,childSchema必须在使用之前定义
},{
  // [options] 可选参数,详情参考文档
  collection:'collectionName'//可以设置与之关联的集合名
})
const modelName = mongoose.model(
  'modelName',
  [Schema],
  [collectionName],
  [skipInit])

标签:modelName,mongoose,集合,model,schema,Model,Schema
来源: https://www.cnblogs.com/dingtongya/p/14803288.html