Node.js 中的資料庫增刪改查:連接資料庫:使用 MongoClient 連線到 MongoDB 資料庫。插入資料:建立集合並插入資料。刪除資料:使用 deleteOne() 刪除資料。更新資料:使用 updateOne() 更新資料。查詢資料:使用 find() 和 toArray() 查詢並取得資料。
Node.js 中的資料庫增刪改查
一、連接資料庫
<code class="ts">const MongoClient = require('mongodb').MongoClient; const url = 'mongodb://localhost:27017'; const client = new MongoClient(url);</code>
二、插入資料
<code class="ts">const collection = client.db('myDatabase').collection('myCollection'); await collection.insertOne({ name: 'John Doe', age: 30 });</code>
三、刪除資料
<code class="ts">await collection.deleteOne({ name: 'John Doe' });</code>
#4、更新資料
<code class="ts">await collection.updateOne({ name: 'John Doe' }, { $set: { age: 31 } });</code>
五、查詢資料
<code class="ts">const cursor = await collection.find({ age: { $gt: 30 } }); const results = await cursor.toArray();</code>
#細節說明:
MongoClient
#連接到MongoDB 資料庫。 deleteOne()
和 updateOne()
方法刪除和更新資料。 find()
方法查詢數據,並使用 toArray()
來取得結果。 以上是nodejs如何實作資料庫增刪改查的詳細內容。更多資訊請關注PHP中文網其他相關文章!