如果找到,我想更新付款文档,使用更新的字段创建一个新文档,保留原始文档

编程入门 行业动态 更新时间:2024-10-06 17:25:09

如果找到,我想更新付款<a href=https://www.elefans.com/category/jswz/34/1770955.html style=文档,使用更新的字段创建一个新文档,保留原始文档"/>

如果找到,我想更新付款文档,使用更新的字段创建一个新文档,保留原始文档

 const payment = await paymentsSchema.findOne({ student: s_id, guardian: g_id }, {},
          { sort: { 'createdAt': -1 } })
        console.log(payment)
        payment.balance = (payment.balance + settings.overtime_rate)
       
        // Create a new document with the updated values
        const updatedPayment =  paymentsSchema(payment.toObject());

        // Save the new document to the database
        updatedPayment.save((err) => {
          if (err) throw err;
          console.log('Payment updated successfully');
        });

我希望在发布此更新后有 2 个文件,原始文件和更新后的文件...

回答如下:
const payment = await paymentsSchema.findOne({ student: s_id, guardian: g_id }, {},
      { sort: { 'createdAt': -1 } },)
    console.log(payment)
    payment.balance = (payment.balance + settings.overtime_rate)
 
    // Create a new document with the updated values
    const updatedPayment = new paymentsSchema({
      balance: payment.balance,
     . . . //other fields you may have
    });

    // Save the new document to the database
    updatedPayment.save((err) => {
      if (err) throw err;
      console.log('Payment updated successfully');
    });

更多推荐

如果找到,我想更新付款文档,使用更新的字段创建一个新文档,保留原始文档

本文发布于:2024-05-30 16:05:47,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1770674.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文档   我想   字段   创建一个   原始

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!