当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose Document Model.create()用法及代码示例


Mongoose API 的 Model.create() 方法用于在集合中创建单个或多个文档。当我们在任何模型上使用 create() 方法时,Mongoose 默认情况下会在内部触发 save()。

用法:

Model.create()

Parameters: Model.create() 方法接受三个参数:

  • docs:  它是一个键值对的对象,将被插入到集合中。
  • options: 它是一个具有各种属性的对象。
  • callback: 它是一个回调函数,一旦执行完成就会运行。

返回值:Model.create() 函数返回一个承诺。

设置 Node.js 应用程序:

步骤 1:使用以下命令创建 Node.js 应用程序:

npm init

步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

示例 1:在此示例中,我们使用 mongoose 建立了数据库连接并定义了模型客户模式,有两列“name”,和“订单数”。到底,我们正在创建一个文档在客户模型上。

app.js


// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
// creating document using create method 
Customer.create({ name: 'Rahul', orderCount: 5 }) 
    .then(result => { 
        console.log(result) 
    })

运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{
  name: 'Rahul',
  orderCount: 5,
  _id: new ObjectId("6304e68407a431f560473ac2"),
  __v: 0
}

使用 Robo3T GUI 工具的数据库的 GUI 表示

示例 2:在此示例中,我们使用 mongoose 建立了数据库连接并定义了模型客户模式,有两列“name”,和“订单数”。到底,我们一次创建多个文档在客户模型上。

app.js


// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, orderCount: Number } 
) 
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
// Creating document using create method 
Customer.create([{  
    name: 'Customer2',  
    orderCount: 10  
}, 
{ name: 'Customer3', orderCount: 20 }]) 
   .then(result => { 
    console.log(result) 
})

运行程序的步骤: 要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

[
  {
    name: 'Customer2',
    orderCount: 10,
    _id: new ObjectId("6304e7c8c21ca86f5ea6fce3"),
    __v: 0
  },
  {
    name: 'Customer3',
    orderCount: 20,
    _id: new ObjectId("6304e7c8c21ca86f5ea6fce4"),
    __v: 0
  }
]

使用 Robo3T GUI 工具的数据库的 GUI 表示

参考:https://mongoosejs.com/docs/api/model.html#model_Model-create



相关用法


注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Document Model.create() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。