gpt4 book ai didi

javascript - 如何使用firebased数据库事务?

转载 作者:行者123 更新时间:2023-12-03 02:28:54 25 4
gpt4 key购买 nike

我想在我的 React Native 应用程序中使用 Firebase 数据库事务。我想在数据库中添加用户时更新用户计数

这是我正在使用的代码

let dbCountPath = "/DatabaseUsersCount/" + "count"

dbCountPath.transaction(function (current_value) {
return (current_value || 0) + 1;
});

我收到交易不存在的错误?我们如何解决这个问题?

最佳答案

您正在尝试对字符串调用transaction。但是 transaction 方法仅在 Reference 上定义,因此您首先必须获取路径的引用。像这样的东西:

let dbCountPath = "/DatabaseUsersCount/" + "count"

firebase.database().ref(dbCountPath).transaction(function (current_value) {
return (current_value || 0) + 1;
});

关于javascript - 如何使用firebased数据库事务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48825473/

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