Node.js對MongoDB進行增刪改查操作

来源:https://www.cnblogs.com/hiramP/archive/2019/04/17/10724945.html
-Advertisement-
Play Games

本文主要介紹了MongoDB及Mongoose,並通過使用Mongoose對文檔進行增刪改查操作。 ...


MongoDB簡介

MongoDB是一個開源的、文檔型的NoSQL資料庫程式。MongoDB將數據存儲在類似JSON的文檔中,操作起來更靈活方便。NoSQL資料庫中的文檔(documents)對應於SQL資料庫中的一行。將一組文檔組合在一起稱為集合(collections),它大致相當於關係資料庫中的表。

除了作為一個NoSQL資料庫,MongoDB還有一些自己的特性:

  • 易於安裝和設置
  • 使用BSON(類似於JSON的格式)來存儲數據
  • 將文檔對象映射到應用程式代碼很容易
  • 具有高度可伸縮性和可用性,並支持開箱即用,無需事先定義結構
  • 支持MapReduce操作,將大量數據壓縮為有用的聚合結果
  • 免費且開源
  • ......

連接MongoDB

在Node.js中,通常使用Mongoose庫對MongoDB進行操作。Mongoose是一個MongoDB對象建模工具,設計用於在非同步環境中工作。

const mongoose = require('mongoose');

mongoose.connect('mongodb://localhost/playground')
    .then(() => console.log('Connected to MongoDB...'))
    .catch( err => console.error('Could not connect to MongoDB... ', err));

Schema

Mongoose中的一切都始於一個模式。每個模式都映射到一個MongoDB集合,並定義該集合中文檔的形狀。
Schema類型

const courseSchema = new mongoose.Schema({
    name: String,
    author: String,
    tags: [String],
    date: {type: Date, default: Date.now},
    isPublished: Boolean
});

Model

模型是根據模式定義編譯的構造函數,模型的實例稱為文檔,模型負責從底層MongoDB資料庫創建和讀取文檔。

const Course = mongoose.model('Course', courseSchema);
const course = new Course({
    name: 'Nodejs Course',
    author: 'Hiram',
    tags: ['node', 'backend'],
    isPublished: true
});

新增(保存)一個文檔

async function createCourse(){
    const course = new Course({
        name: 'Nodejs Course',
        author: 'Hiram',
        tags: ['node', 'backend'],
        isPublished: true
    });
    
    const result = await course.save();
    console.log(result);
}

createCourse();

查找文檔

async function getCourses(){
    const courses = await Course
        .find({author: 'Hiram', isPublished: true})
        .limit(10)
        .sort({name: 1})
        .select({name: 1, tags:1});
    console.log(courses);
}
getCourses();

使用比較操作符

比較操作符

async function getCourses(){
    const courses = await Course
        // .find({author: 'Hiram', isPublished: true})
        // .find({ price: {$gt: 10, $lte: 20} })
        .find({price: {$in: [10, 15, 20]} })
        .limit(10)
        .sort({name: 1})
        .select({name: 1, tags:1});
    console.log(courses);
}
getCourses();

使用邏輯操作符

  • or (或) 只要滿足任意條件
  • and (與) 所有條件均需滿足
async function getCourses(){
    const courses = await Course
        // .find({author: 'Hiram', isPublished: true})
        .find()
        // .or([{author: 'Hiram'}, {isPublished: true}])
        .and([{author: 'Hiram', isPublished: true}])
        .limit(10)
        .sort({name: 1})
        .select({name: 1, tags:1});
    console.log(courses);
}
getCourses();

使用正則表達式

async function getCourses(){
    const courses = await Course
        // .find({author: 'Hiram', isPublished: true})
        //author欄位以“Hiram”開頭
        // .find({author: /^Hiram/})
        //author欄位以“Pierce”結尾
        // .find({author: /Pierce$/i })
        //author欄位包含“Hiram”
        .find({author: /.*Hiram.*/i })
        .limit(10)
        .sort({name: 1})
        .select({name: 1, tags:1});
    console.log(courses);
}
getCourses();

使用count()計數

async function getCourses(){
    const courses = await Course
        .find({author: 'Hiram', isPublished: true})
        .count();
    console.log(courses);
}
getCourses();

使用分頁技術

通過結合使用 skip()limit() 可以做到分頁查詢的效果

async function getCourses(){
    const pageNumber = 2;
    const pageSize = 10;
    const courses = await Course
        .find({author: 'Hiram', isPublished: true})
        .skip((pageNumber - 1) * pageSize)
        .limit(pageSize)
        .sort({name: 1})
        .select({name: 1, tags: 1});
    console.log(courses);
}
getCourses();

更新文檔

先查找後更新

async function updateCourse(id){
    const course = await Course.findById(id);
    if(!course) return;

    course.isPublished = true;
    course.author = 'Another Author';

    const result = await course.save();
    console.log(result);
}

直接更新

async function updateCourse(id){
    const course = await Course.findByIdAndUpdate(id, {
        $set: {
            author: 'Jack',
            isPublished: false
        }
    }, {new: true}); //true返回修改後的文檔,false返回修改前的文檔
    console.log(course);
}

MongoDB更新操作符,請參考:https://docs.mongodb.com/manual/reference/operator/update/

刪除文檔

  • deleteOne 刪除一個
  • deleteMany 刪除多個
  • findByIdAndRemove 根據ObjectID刪除指定文檔
async function removeCourse(id){
    // const result = await Course.deleteMany({ _id: id});
    const course = await Course.findByIdAndRemove(id);
    console.log(course)
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 轉載請註明出處。本圖來自北航電腦虛擬化課程ppt. ...
  • 在學習彙編的時候,會需要用到debug調試程式,但是現在win10預設已經移除了這個插件,我們需要手動安裝,下麵就告訴大家如何在win10環境下安裝debug。 1:準備工具 1.1 DOSBox 1.2 debug.exe 2:安裝過程 DOSBox安裝過程:可以在官方網站下載:https://w ...
  • 雲伺服器ESC 部署vsftpd 虛擬用戶 說明:雲伺服器部署和本地伺服器部署一樣,都需要開通指定的相應埠,只不過雲伺服器需要在安全組規則中打開相應的埠允許通過。 環境說明: 對應的用戶對應不同的密碼,對應不同的數據目錄,如下圖: 具體步驟 1) 安裝軟體 2) 創建相應的ftp數據目錄 3) ...
  • LVS
    LVS 概述.V1 LVS LVS lvs是一款開源的負責均衡調度器應用,工作於傳輸層。負責把客戶端請求按調度演算法轉發只後端伺服器集群中的主機進行響應。 LVS組成 LVS組成 ipvsadm:ipvsadm是工作於用戶工作,用戶通過ipvsadm工具定義lvs的工作機制,集群,規則以及演算法。 ip ...
  • sed:文本流編輯器 主要是對文件的快速增刪改查,查詢功能中最常用的是過濾,取行 sed [選項] [sed內置命令字元] [輸入文件] Options: -n:取消預設的sed輸出,常與sed內置命令p連用 -e:直接在命令行界面進行sed動作編輯,多點編輯 -r:使用擴展的正則表達式 -i:直接 ...
  • root@VM-38-204-ubuntu:~# host baidu.com baidu.com has address 220.181.57.216 baidu.com has address 123.125.114.144 baidu.com mail is handled by 15 mx.... ...
  • grep:文本過濾工具 支持BRE egrep: 支持ERE fgrep: 不支持正則 作用:根據用戶指定的“模式”,對目標文本逐行進行匹配檢查,列印匹配到的行 模式:由正則表達式字元及文本字元所編寫的過濾條件 [OPTIONS] PATTERN [FILE...] options: -v:顯示不被 ...
  • 問題描述: 應用程式視窗能夠打開,但就是這樣一直空白,什麼都不顯示。接下來,主視窗以純白色載入,不顯示任何其他內容。 接下來主視窗背景米色載入和菜單欄載入和工作。應用程式將永遠保持這樣, 有時界面會變成黑色。打開任務管理器,會看到有一堆Postman進程正在運行。 系統Windows Server ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...