當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Mongoose insertMany()用法及代碼示例


insertMany()函數用於將多個文檔插入一個集合中。它接受要插入到集合中的一係列文檔。

Mongoose 模塊的安裝:

  1. 您可以訪問鏈接安裝 Mongoose 模塊。您可以使用此命令安裝此軟件包。
    npm install mongoose
  2. 安裝 Mongoose 模塊後,您可以使用命令在命令提示符下檢查您的 Mongoose 版本。
    npm version mongoose
  3. 之後,您可以僅創建一個文件夾並添加一個文件,例如index.js,要運行此文件,您需要運行以下命令。
    node index.js

文件名:index.js

const mongoose = require('mongoose'); 
  
// Database connection 
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', { 
    useNewUrlParser:true, 
    useCreateIndex:true, 
    useUnifiedTopology:true
}); 
  
// User model 
const User = mongoose.model('User', { 
    name:{ type:String }, 
    age:{ type:Number } 
}); 
  
// Function call 
User.insertMany([ 
    { name:'Gourav', age:20}, 
    { name:'Kartik', age:20}, 
    { name:'Niharika', age:20} 
]).then(function(){ 
    console.log("Data inserted")  // Success 
}).catch(function(error){ 
    console.log(error)      // Failure 
});

運行程序的步驟:

  1. 項目結構將如下所示:
    project structure
  2. 確保使用以下命令安裝了mongoose模塊:
    npm install mongoose
  3. 使用以下命令運行index.js文件:
    node index.js

    Output of above command

  4. 運行以上命令後,您可以看到數據已插入數據庫。您可以使用任何GUI工具或終端來查看數據庫,就像我使用Robo3T GUI工具一樣,如下所示:
    Database

因此,這就是使用mongoose insertMany()函數將多個文檔插入MongoDB和Node.js中的集合的方法。

相關用法


注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Mongoose | insertMany() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。