gpt4 book ai didi

javascript - 错误 : You must return a Promise in your transaction()-callback

转载 作者:搜寻专家 更新时间:2023-10-31 23:57:45 26 4
gpt4 key购买 nike

我的脚本在返回 assync firestore set 函数的结果时抛出以下错误:

You must return a Promise in your transaction()-callback.

根据 firebase documentation关于交易,set 函数返回交易本身。

这里是我的代码的简化副本。

var myDoc = {
field1: "v1"
};
var docRef = db
.collection("docs")
.doc("1");

return db
.runTransaction(t => {
return t
.set(docRef, chat, {merge:false}); //has i understand, this should return a transaction object but the error says otherwise.
})
.then( doc => {
response.send();
})
.catch(err => {
...;
})

我对 Nodejs 还是个新手,对链式异步方法不是很熟悉,所以我一定是在这里犯了一些明显的错误。

最佳答案

没有使用过 firestore 事务,但我使用过 firebase 事务。您可以尝试以下

return db
.runTransaction(t => {
return t.set(docRef, chat, {merge:false})
.then(data => {
return Promise.resolve('transaction complete');
})
.then( doc => {
response.send();
})
.catch(err => {
...;
})

并且包含整个代码的方法必须像您编写的那样返回 promise return db.runTransaction(t => {....})所以如果不需要那么使用

var transaction = db.runTransaction(t => {...});

关于javascript - 错误 : You must return a Promise in your transaction()-callback,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48623641/

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