gpt4 book ai didi

javascript - 何时使用 Knex transacting() 与链接 trx 对象

转载 作者:搜寻专家 更新时间:2023-10-30 19:41:10 24 4
gpt4 key购买 nike

Knex 的交易文档中的代码如下所示:

knex.transaction(function(trx) {
var books = [
{title: 'Canterbury Tales'},
{title: 'Moby Dick'},
{title: 'Hamlet'}
];

return trx
.insert({name: 'Old Books'}, 'id')
.into('catalogues')
.then(function(ids) {
return Promise.map(books, function(book) {
book.catalogue_id = ids[0];

// Some validation could take place here.

return trx.insert(info).into('books');
});
});
})

在 SO 上,我看到函数 transacting() 的广泛使用,示例如下:

knex.transaction(function(trx) {
knex('foo')
.transacting(trx)
.insert({id:"bar", username:"bar"})
// etc
})

Knex 描述 transacting() 的例子与上面类似:

Used by knex.transaction, the transacting method may be chained to any query and passed the object you wish to join the query as part of the transaction for.

我的问题是:

trx.insert().into('foo')knex('foo').transacting(trx).insert() 有什么区别为什么要使用一个而不是另一个?

最佳答案

当你想在同一个事务中执行多个操作时,使用.transacting(trx)会很方便:

knex.transaction(function (trx) {
return Promise.all([
knex('foo').insert({ name: 'My Name' }).transacting(trx),
knex('bar').insert({ field: 'Value' }).transacting(trx)
])
// ---- or something like ----
return Promise.all(SOME_INPUT_VALUES.map(function (value) {
return knex('foo_bar').update('lul', value.lul).where('id', value.id).transacting(trx)
}))
})

真的不知道其他方法的特定用法。这可能只是风格问题。你有两个接口(interface),你可以选择一个你最喜欢的。至于我,我习惯了.transacing(trx)

关于javascript - 何时使用 Knex transacting() 与链接 trx 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46804950/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com