在 MongoDB 中創建集合并寫入數據庫可以使用 insertOne()
或 insertMany()
方法。
以下是使用 insertOne()
方法創建集合并寫入數據的示例:
const MongoClient = require('mongodb').MongoClient;
const url = 'mongodb://localhost:27017/mydb';
MongoClient.connect(url, function(err, db) {
if (err) throw err;
console.log('數據庫已連接');
// 在這里執行創建集合和寫入數據的操作
});
db.createCollection('mycollection', function(err, res) {
if (err) throw err;
console.log('集合已創建');
});
const collection = db.collection('mycollection');
const data = { name: 'John', age: 30 };
collection.insertOne(data, function(err, res) {
if (err) throw err;
console.log('文檔已插入');
db.close();
});
如果要一次插入多個文檔,可以使用 insertMany()
方法。示例代碼如下:
const data = [
{ name: 'John', age: 30 },
{ name: 'Jane', age: 25 },
{ name: 'Tom', age: 35 }
];
collection.insertMany(data, function(err, res) {
if (err) throw err;
console.log(`${res.insertedCount} 個文檔已插入`);
db.close();
});
在執行完所有操作后,使用 db.close()
方法關閉數據庫連接。