我正在尝试使用此mysql查询更新表中的状态字段:
UPDATE battles SET status = "FINISHED" WHERE status like "LIVE" AND end_date < NOW();
但是我使用的是bookshelf.js并且似乎无法使其正常工作。这就是它的样子:
return this.Model.collection().query(qb => qb.where('status', 'LIKE', status).andWhere('end_date', '<', connection.knex.fn.now())).set({ status: 'FINISHED' });
你能告诉我我做错了什么或怎么做得对吗?
答案 0 :(得分:1)
您正在使用 set 方法更新表格的列。但是检查official docs,设置方法用于更新模型集合。 例如:
var vanHalen = new bookshelf.Collection([eddie, alex, stone, roth]);
vanHalen.set([eddie, alex, stone, hagar]);
您可以使用以下结构
CollectionModel.forge().query({where: {status: "LIVE"}}).fetch().then(function (resData) {
_.each(resData.models, function (model) { //I am looping over models using underscore, you can use any loop
model.save({ status: 'FINISHED' }, {method: 'update'}, {patch: true})
.then(function(row) {
console.log("row updated");
})
})
})