KnexJS交易

时间:2018-11-12 13:08:28

标签: node.js knex.js

如何执行此交易?我的问题是正确使用for指令。

app.db.transaction(function (trx) {

    app.db('sales_record_products').transacting(trx).insert(products)
     .then(_ => {

      for (let i = 0; i < stockProducts.ids.length; i++) {
        app.db('products').transacting(trx).where('id',stockProducts.ids[i]).update({quantity: stockProducts.results[i]})
.then(_ => {

        })

      }

    })
    .then(trx.commit)
    .catch(trx.rollback)
  })
  .then(_ => res.status(200).json({success: true}))
  .catch(err => res.status(500).send(err))

1 个答案:

答案 0 :(得分:0)

为什么不使用类似的东西

// Start a database transaction
return app.db.transaction(function (trx) {

    // Insert products
    return trx.insert(products)
      .then(function (newIds) {

        // Product inserted, you have the new database id in newIds

        // Update all product individually but sequentially
        return Promise.mapSeries(stockProducts, function (sp) {

          // Update a single product
          return trx
            .table('products')
            .where('id', stockProducts.ids[i])
            .update({ quantity: stockProducts.results[i] });
        });

    });

});