- Node & MongoDB 教程
- Node & MongoDB - 主頁
- Node & MongoDB - 概述
- Node & MongoDB - 環境設定
- Node & MongoDB 示例
- Node & MongoDB - 連線資料庫
- Node & MongoDB - 顯示資料庫
- Node & MongoDB - 刪除資料庫
- Node & MongoDB - 建立集合
- Node & MongoDB - 刪除集合
- Node & MongoDB - 顯示集合
- Node & MongoDB - 插入文件
- Node & MongoDB - 選擇文件
- Node & MongoDB - 更新文件
- Node & MongoDB - 刪除文件
- Node & MongoDB - 嵌入式文件
- Node & MongoDB - 限制記錄
- Node & MongoDB - 排序記錄
- Node & MongoDB 有用資源
- Node & MongoDB - 快速指南
- Node & MongoDB - 有用資源
- Node & MongoDB - 討論
Node & MongoDB - 插入文件
要在資料庫的集合中插入文件,可以使用 collection.insertOne() 或 collection.insertMany() 方法分別插入一個或多個文件。
database.collection("sampleCollection").insertOne(firstDocument, function(error, res) {
if (error) throw error;
console.log("1 document inserted");
});
database.collection("sampleCollection").insertMany(documents, function(error, res) {
if (error) throw error;
console.log("Documents inserted: " + res.insertedCount);
});
示例
嘗試以下示例以在 mongodb 集合中插入文件 -
將以下示例複製並貼上到 mongodb_example.js 中 -
const MongoClient = require('mongodb').MongoClient;
// Prepare URL
const url = "mongodb://:27017/";
const firstDocument = {
First_Name : 'Mahesh',
Last_Name : 'Parashar',
Date_Of_Birth: '1990-08-21',
e_mail: 'mahesh_parashar.123@gmail.com',
phone: '9034343345'
};
const documents = [{
First_Name : 'Radhika',
Last_Name : 'Sharma',
Date_Of_Birth: '1995-09-26',
e_mail: 'radhika_sharma.123@gmail.com',
phone: '9000012345'
},
{
First_Name : 'Rachel',
Last_Name : 'Christopher',
Date_Of_Birth: '1990-02-16',
e_mail: 'rachel_christopher.123@gmail.com',
phone: '9000054321'
},
{
First_Name : 'Fathima',
Last_Name : 'Sheik',
Date_Of_Birth: '1990-02-16',
e_mail: 'fathima_sheik.123@gmail.com',
phone: '9000012345'
}
];
// make a connection to the database
MongoClient.connect(url, function(error, client) {
if (error) throw error;
console.log("Connected!");
// Connect to the database
const database = client.db('myDb');
database.collection("sampleCollection").insertOne(firstDocument, function(error, res) {
if (error) throw error;
console.log("1 document inserted");
});
database.collection("sampleCollection").insertMany(documents, function(error, res) {
if (error) throw error;
console.log("Documents inserted: " + res.insertedCount);
});
// close the connection
client.close();
});
輸出
使用 node 執行 mysql_example.js 指令碼並驗證輸出。
node mongodb_example.js Documents inserted: 3 1 document inserted
廣告