我有两张桌子“A”和“B”。我想在表“B”中创建一行,其中包含表“A”的主键,整个操作应该是原子的。
function test(data, res) {
let query1 = knex.insert([data], "id").into("A").toString();
let query2 = "";
db.tx(function (t) {
return this.batch([
t.one(query1).then(function (id) {
query2 = knex.insert({A_id:id, x:x, y:y}).into("B").toString();
t.none(query2).catch(function (error) {
console.log(error); // want to pass this error to next catch block
});
})
]);
}).then(function () {
console.log("success");
}).catch(function (error) {
console.log(error);
});
}
每当嵌套承诺出现错误时,我想拒绝父承诺并将该错误传递给父承诺。
答案 0 :(得分:1)
我是pg-promise的作者。它具有编写非常干净的代码的所有正确的成分:
function test(data) {
db.tx(function *(t) {
let b = yield t.one('INSERT INTO B(col1, col2) VALUES(${prop1}, ${prop2}) RETURNING id', data);
yield t.none('INSERT INTO A(col1, col2) VALUES($1, $2)', ['bla', b.id]);
})
.then(function () {
console.log('SUCCESS');
})
.catch(function (error) {
console.log('ERROR:', error);
});
}
您根本不需要在示例中使用t.batch
,这是使用ES6生成器的最佳选择。
如果您确实想自动生成插入,请参阅helpers命名空间,不需要第三方库。
答案 1 :(得分:0)
搞定了......必须从孩子父母那里返回承诺,这是t.none()而没有catch()