最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

如何更新猫鼬中的数组元素

运维笔记admin11浏览0评论

如何更新猫鼬中的数组元素

如何更新猫鼬中的数组元素

我正在尝试更新一个名为MongoDb的具有文档数组items集合。我为此使用expressmongoose框架。

这是我的schema的样子:

const mongoose = require("mongoose");

const Schema = mongoose.Schema;

let invoices = new Schema({
  vendor: { type: String },
  invoiceDate: { type: Date, default: Date.now },
  expectedDate: { type: Date, default: Date.now },
  billingAddress: { type: String },
  contactPerson: { type: String },
  items: [
    {
      itemID: Schema.Types.ObjectId,
      qty: { type: Number },
      unitPrice: { type: Number },
      linePrice: { type: Number }
    }
  ],
  totalPrice: { type: Number }
});

module.exports = mongoose.model("invoices", invoices);

我想通过首先找到该特定文档的ID来更新特定文档,然后相应地更新items

这是我到目前为止尝试过的,我不知道下一步要更新数组items

//end-point-4
Routes.route('/update/:id').post((req, res) => {
    invoicesDB.findById(req.params.id, (err, invoice) => {
        if(!invoice){
            res.status(404).send('Not found!');
        }else{
            invoice.vendor = req.body.vendor;
            invoice.invoiceDate = req.body.invoiceDate;
            invoice.expectedDate = req.body.expectedDate;
            invoice.billingAddress = req.body.billingAddress;
            invoice.contactPerson = req.body.contactPerson;

            //how to update items
            invoice.items = req.body.items; //this I guess, gives the answer but not sure.

            invoice.totalPrice = req.body.totalPrice;
        }
    });
});

PS:我不想更新items中的某个项目。我想要的是用给定的值更新数组中的每个项目。

例如,假设用户只想更新items中的特定项目,因此只应更新该特定项目。

回答如下:

您可以按如下所示直接进行更新:

    invoicesDB.update(
      { "_id" : :req.params.id, “items._id": “Id of item for which
                                  user needs to update” }, 
      { "$set": { “items.$.qty”: 5}}, 
      function(err, company) {
        console.log(company)
    })

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论