我想保存我的数据:
- Parent
- 1
- Value here
- Another value
- 2
- Value here
- Another value
等等。现在我用它来向Parent
数组添加一个项目:
func save() {
let ref = AppDatabaseReference.users(uid: uid).reference()
ref.child("parent").childByAutoId().setValue(toDictionary())
}
item.save()
这有效,但它将每个项目保存在一个唯一的字符串下(如预期的那样)。但这让我更难以参考。
- Parent
- dhsaifhafh86
- Value here
- Another value
- dhsaifusfh53
- Value here
- Another value
我考虑在toDictionary()
周围添加方括号,如ref.child("parent").setValue([toDictionary()])
,但它只是替换父级下的现有子级而不是添加新子级:
- Parent
- Replaced stuff
- You'll never win!
如果有帮助,toDictionary()
看起来像这样:
func toDictionary() -> [String: Any] {
return [
"title": title,
"description": description,
"stuff": stuff,
"more stuff": moreStuff
]
}
答案 0 :(得分:0)
我做了这样的事情-
let ref=firebase().database().ref("Parent");
ref.once("value").then(snap=>{
let length=snap.val()?Object.keys(snap.val()).length:0;
ref.update({[length+1]:{Value here,Another value}});
});