gpt4 book ai didi

javascript - 在 Knex 中链接查询/事务?

转载 作者:行者123 更新时间:2023-11-29 19:12:35 25 4
gpt4 key购买 nike

我想在没有嵌套回调的情况下链接查询。我想要类似于:

knex.select('column')
.from('table')
.then(handleData)
.thenPrepareForNextQuery()
.select('otherColumn')
.....

我认为最接近描述这一点的是响应式(Reactive)或一元式编程。

最佳答案

myPromise = new Promise(function(resolve,error){ resolve('param!') });
myPromise
.then(function(x){
console.log(x);
return knex.select('column')
.from('table')
.then(handleData);
})
.then(function(data_from_handleData){
return knex.select('another_column')
.from('another_table')
})

关于javascript - 在 Knex 中链接查询/事务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37647072/

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