使用knex.js使用select查询结果更新现有列

时间:2017-03-22 10:29:14

标签: mysql sql node.js knex.js

产品(id,currentdraw,totaldraw,ratio)

产品是我的桌子

我想使用currentdraw和totaldraw来更新比率

这是我的代码

{{1}}

当我运行代码时,没有发生错误但比率列没有更新。

我不知道哪里出错了。

有人能帮助我吗?感谢

1 个答案:

答案 0 :(得分:2)

我认为你的ratiolist是数组而不是对象,添加console.dir(ratiolist)来检查第一个查询返回的内容:

function(ratiolist) {
  // here ratiolist is an array
  db('product')
    .where({
      productid : pid
    })
    .update({
      // undefined / undefined is NaN
      ratio : ratiolist.currentdraw / ratiolist.totaldraw 
    })
    // second query  is not yet ran when this callback is called
    // try to use promise chains...
    cb(null, ratiolist);
})

执行此查询的更好方法是:

// return value passed as promise instead of callback
Product.updateRatio = function(pid) {
  return db('product')
    .where('productid', pid)
    .update({ 
      ratio : db.raw('?? / ??', ['currentdraw', 'totaldraw'])
    })
    .then(() => db('product').where('productid', pid));
}

如果你坚持使用回调,这应该有效:

Product.updateRatio = function(pid, cb) {
  db('product')
    .where('productid', pid)
    .update({ 
      ratio : db.raw('?? / ??', ['currentdraw', 'totaldraw'])
    })
    .then(() => db('product').where('productid', pid))
    .then(ratiolist => cb(null, ratiolist));
}