gpt4 book ai didi

ios - Firebase 将数据附加到节点

转载 作者:可可西里 更新时间:2023-11-01 01:27:08 26 4
gpt4 key购买 nike

如何将数据附加到 Firebase 中的节点?值更新只是一个字符串,而不是字典。

Firebase 应该能够递增每个项目。我认为 update 会起作用,但那只会更新字典。当我尝试设置该值时,它会清除所有内容。

FIRDatabase().reference().database.childRef(refUrl: path).updateChildValues([:])

例子:

node{
1:itemOne
2:itemTwo
3:itemThree
}

最佳答案

来自 Firebase 文档

https://firebase.google.com/docs/database/ios/read-and-write

更新特定字段
要同时写入一个节点的特定子节点而不覆盖其他子节点,请使用 updateChildValues 方法。

尝试类似的东西

let key = ref.child("node").childByAutoId().key
let post = ["uid": userID,
"author": username,
"title": title,
"body": body]
let childUpdates = ["/posts/\(key)": post,
"/user-posts/\(userID)/\(key)/": post]
ref.updateChildValues(childUpdates)

关于ios - Firebase 将数据附加到节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40983994/

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