溫馨提示×

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

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

怎么在node.js中使用mongoose對(duì)數(shù)據(jù)庫(kù)進(jìn)行操作

發(fā)布時(shí)間:2021-03-22 17:26:15 來(lái)源:億速云 閱讀:219 作者:Leah 欄目:web開(kāi)發(fā)

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

1、數(shù)據(jù)庫(kù)操作語(yǔ)句

Mongoose通過(guò)model實(shí)現(xiàn)對(duì)每個(gè)集合的操作,在使用前需要先定義model:goods。

①、增加數(shù)據(jù):從集合中查詢一條記錄,并返回doc,對(duì)doc操作之后通過(guò)save()保存到集合

goods.findOne({productId},(err,goodsDoc)=>{
   goodsDoc.productNum=1;
   goodsDoc.save(err,doc);
});

②、刪除數(shù)據(jù):

model.remove(conditions,callback(){})

③、修改數(shù)據(jù):

model.update(conditions,updates,callback(){})

④、查詢數(shù)據(jù):

model.find(conditions,callback(){})

2、添加購(gòu)物車

mongodb中新建用戶user集合,user中有cartList數(shù)組,用戶點(diǎn)擊添加購(gòu)物車時(shí)在前端發(fā)出post請(qǐng)求包括用戶、商品的id。然后在后端查詢到對(duì)應(yīng)的用戶,將其cartList中的商品id進(jìn)行比對(duì),如果在其中,則把商品數(shù)量+1,否則從商品集合中查詢商品信息,插入到cartList數(shù)組中。

前端添加購(gòu)物車請(qǐng)求:

  addCart(productId){//加入購(gòu)物車
   axios.post('./users/addCart',{
    userId:"100000077",
    productId:productId
   }).then((response)=>{
    let res=response.data;
    console.log(res.msg);
   });
  }

后端處理:

var express = require('express');
var router = express.Router();
const mongoose=require('mongoose');
var user=require('../models/userModel');
var goods=require('../models/productModel');
//連接數(shù)據(jù)庫(kù)
mongoose.connect('mongodb://localhost:27017/mall');
mongoose.connection.on('connected',()=>{
 console.log("mongoDB連接成功");
});
//處理添加購(gòu)物車請(qǐng)求
router.post('/addCart',(req,res,next)=>{
 let userId=req.body.userId;
 let productId=req.body.productId;
 let params={
  userId
 };
 user.findOne(params,(err,userDoc)=>{//查詢對(duì)應(yīng)用戶信息
  if (err){
   res.json({
    status:1,
    msg:err.message
   });
  }else{
   if(userDoc){
    let inCart=false;
    userDoc.cartList.forEach(function(item){//遍歷cartList比對(duì)商品id
     if (item.productId==productId){    //若商品在購(gòu)物車內(nèi),數(shù)量增加
      inCart=true;
      item.productNum++;
      saveDoc(userDoc,res);
     }
    });
    //所選商品不在購(gòu)物車內(nèi),則從商品列表內(nèi)查找并添加到購(gòu)物車
    if(!inCart){
     goods.findOne({productId},(err,goodsDoc)=>{
      if(err){
       res.json({
        status:1,
        msg:err.message
       })
      }else{
       goodsDoc.checked=true;
       goodsDoc.productNum=1;
       userDoc.cartList.push(goodsDoc);//將商品插入到用戶cartList數(shù)組內(nèi)
       console.log(userDoc.cartList);
       saveDoc(userDoc,res);
      }
     });
    }
   }
  }
 })
});

利用doc.save將修改后的文檔保存到數(shù)據(jù)庫(kù)

function saveDoc(doc,res) {
 //保存操作
 doc.save((err,doc)=>{
  if (err){
   res.json({
    status:1,
    msg:err.message
   })
  }else {
   res.json({
    status:0,
    msg:"添加購(gòu)物車成功",
    result:'success'
   })
  }
 })
}

3、從購(gòu)物車刪除數(shù)據(jù)

前端點(diǎn)擊刪除按鈕,調(diào)用deleteCart()發(fā)出post請(qǐng)求,刪除成功重新加載購(gòu)物車列表

   deleteCart(){
    axios.post('users/deleteCart',{
     productId:this.productId
    }).then((response,err)=>{
     let res=response.data;
     if(res.status===0){
      this.getCart();
      this.modalShow=false;
     }
    })
   },

后端獲取到刪除商品的id、用戶的id,刪除數(shù)據(jù)庫(kù)中指定條目

router.post('/deleteCart',(req,res)=>{
 "use strict";
 let productId=req.body.productId;
 let userId=req.cookies.userId;
 user.update({userId:userId},{
  $pull:{
   cartList:{productId:productId}
  }
 },(err,doc)=>{
  if(err){
   res.json({
    status:1,
    msg:'數(shù)據(jù)庫(kù)刪除失敗'
   })
  }else{
   if(doc){
    res.json({
     status:0,
     msg:'購(gòu)物車刪除成功'
    })
   }
  }
 })
});

4、修改購(gòu)物車

前端對(duì)不同的按鈕點(diǎn)擊,實(shí)現(xiàn)購(gòu)物車數(shù)量的增、減、選中的改變,調(diào)用editCart(opt,item),然后將修改的數(shù)據(jù)以post發(fā)送

editCart(flag,item){
    if(flag==='check'){
     item.checked=!item.checked;
    }else if(flag==='add'){
     item.productNum++;
    }else if(flag==='sub'){
     item.productNum<=0 ? item.productNum=0 : item.productNum++ ;
    }
    axios.post('users/editCart',{
     productId:item.productId,
     checked:item.checked,
     productNum:item.productNum
    }).then((response,err)=>{
     let res=response.data;
     if(res.status===0){
      this.getCart();
     }else{
      console.log(res.msg);
     }
    })
}

后端接收要修改的數(shù)據(jù),并對(duì)數(shù)據(jù)庫(kù)進(jìn)行更新:

router.post('/editCart',(req,res)=>{
 "use strict";
 let productId=req.body.productId;
 let checked=req.body.checked;
 let productNum=req.body.productNum;
 let userId=req.cookies.userId;
 user.update({userId:userId,'cartList.productId':productId},{
  $set:{"cartList.$.checked":checked,"cartList.$.productNum":productNum}
 },(err,doc)=>{
  if(err){
   res.json({
    status:1,
    msg:err.message
   })
  }else {
   res.json({
    status:0,
    msg:'購(gòu)物車更新成功'
   })
  }
 })
});

5、查詢購(gòu)物車

前端發(fā)送查詢購(gòu)物車get請(qǐng)求,將結(jié)果數(shù)據(jù)賦予catList,頁(yè)面遍歷cartList渲染數(shù)據(jù)

   getCart(){
    axios.get('users/getCart').then((response,err)=>{
     let res=response.data;
     if(res.status===0){
      this.cartList=res.result.list;
     }else{
      console.log(res.msg);
     }
    })
   },

后端根據(jù)用戶的cookie,查詢指定的用戶的購(gòu)物車

router.get('/getCart',(req,res)=>{
 "use strict";
 user.findOne({userId:req.cookies.userId},(err,doc)=>{
  if(doc){
   res.json({
    status:0,
    msg:'',
    result:{
     list:doc.cartList
    }
   })
  }else{
   res.json({
    status:1,
    msg:"購(gòu)物車列表查詢失敗"
   })
  }
 })
});

6、購(gòu)物車的總價(jià)與全選

利用vue的計(jì)算屬性可以實(shí)現(xiàn)屬性的隨時(shí)變化,計(jì)算屬性只有在相關(guān)數(shù)據(jù)發(fā)送改變時(shí)才會(huì)隨之改變,計(jì)算屬性的實(shí)現(xiàn)像函數(shù),但使用類似于一般屬性,例如總價(jià)totalPrice與判斷是否全部選中allSelected:

  computed:{
   totalPrice(){
    let total=0;
    this.cartList.forEach((item)=>{
     if(item.checked)
      total+=parseFloat(item.salePrice)*parseInt(item.productNum);
    });
    return total;
   },
   allSelected(){
    let selected=true;
    this.cartList.forEach((item)=>{
     selected=selected&&item.checked;
    });
    console.log(selected);
    return selected;
   }
  },

上述內(nèi)容就是怎么在node.js中使用mongoose對(duì)數(shù)據(jù)庫(kù)進(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