产品(id,currentdraw,totaldraw,ratio)
产品是我的桌子
我想使用currentdraw和totaldraw来更新比率
这是我的代码
{{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));
}