溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用Node.js怎么對(duì)MongoDB進(jìn)行增刪改查操作

發(fā)布時(shí)間:2021-05-26 10:59:33 來(lái)源:億速云 閱讀:290 作者:Leah 欄目:web開發(fā)

本篇文章為大家展示了使用Node.js怎么對(duì)MongoDB進(jìn)行增刪改查操作,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

MongoDB簡(jiǎn)介

MongoDB是一個(gè)開源的、文檔型的NoSQL數(shù)據(jù)庫(kù)程序。MongoDB將數(shù)據(jù)存儲(chǔ)在類似JSON的文檔中,操作起來(lái)更靈活方便。NoSQL數(shù)據(jù)庫(kù)中的文檔(documents)對(duì)應(yīng)于SQL數(shù)據(jù)庫(kù)中的一行。將一組文檔組合在一起稱為集合(collections),它大致相當(dāng)于關(guān)系數(shù)據(jù)庫(kù)中的表。

除了作為一個(gè)NoSQL數(shù)據(jù)庫(kù),MongoDB還有一些自己的特性:

?易于安裝和設(shè)置
?使用BSON(類似于JSON的格式)來(lái)存儲(chǔ)數(shù)據(jù)
?將文檔對(duì)象映射到應(yīng)用程序代碼很容易
?具有高度可伸縮性和可用性,并支持開箱即用,無(wú)需事先定義結(jié)構(gòu)
?支持MapReduce操作,將大量數(shù)據(jù)壓縮為有用的聚合結(jié)果
?免費(fèi)且開源
?......

連接MongoDB

在Node.js中,通常使用Mongoose庫(kù)對(duì)MongoDB進(jìn)行操作。Mongoose是一個(gè)MongoDB對(duì)象建模工具,設(shè)計(jì)用于在異步環(huán)境中工作。

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中的一切都始于一個(gè)模式。每個(gè)模式都映射到一個(gè)MongoDB集合,并定義該集合中文檔的形狀。

Schema類型

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

Model

模型是根據(jù)模式定義編譯的構(gòu)造函數(shù),模型的實(shí)例稱為文檔,模型負(fù)責(zé)從底層MongoDB數(shù)據(jù)庫(kù)創(chuàng)建和讀取文檔。

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

新增(保存)一個(gè)文檔

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();

使用正則表達(dá)式

async function getCourses(){
  const courses = await Course
    // .find({author: 'Hiram', isPublished: true})
    //author字段以“Hiram”開頭
    // .find({author: /^Hiram/})
    //author字段以“Pierce”結(jié)尾
    // .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()計(jì)數(shù)

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

使用分頁(yè)技術(shù)

通過(guò)結(jié)合使用 skip() 及 limit() 可以做到分頁(yè)查詢的效果

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更新操作符,請(qǐng)參考:https://docs.mongodb.com/manual/reference/operator/update/

刪除文檔

?deleteOne 刪除一個(gè)
?deleteMany 刪除多個(gè)
?findByIdAndRemove 根據(jù)ObjectID刪除指定文檔

async function removeCourse(id){
  // const result = await Course.deleteMany({ _id: id});
  const course = await Course.findByIdAndRemove(id);
  console.log(course)
}

上述內(nèi)容就是使用Node.js怎么對(duì)MongoDB進(jìn)行增刪改查操作,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI