gpt4 book ai didi

ios - 使用 Swift 在 Firebase 中保存键值字典

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

这个问题是来自:Post Array to firebase Database in Swift 的跟进

我正在尝试将一些成分保存到食谱中,稍后能够检索包含其中成分的整个食谱。查看上面的问题和这篇博文后 https://firebase.googleblog.com/2014/04/best-practices-arrays-in-firebase.html .我能够重新构建我的数据库

这是我的成分字典:

{
"IngredientDict": {
"-KkbWdomTYdpgEDLjC9w": "Eggs",
"-KkbWvaa5DT1PY7q7jIs": "Spaghetti",
"-KkbaDQ8wYJxR3O2OwKd": "Parmesan"

// More possible ingredients

}
}

这是我的成分数据:

{
"IngredientData": {
"ingredients": {
"-KkbWdomTYdpgEDLjC9w": {
"name": "Eggs",
"uid": "-KkbWdomTYdpgEDLjC9w"
},
"-KkbWvaa5DT1PY7q7jIs": {
"name": "Spaghetti",
"uid": "-KkbWvaa5DT1PY7q7jIs"
},
"-KkbaDQ8wYJxR3O2OwKd": {
"name": "Parmesan",
"uid": "-KkY90e7dAgefc8zH3_F"

// More possible ingredients

}
}
}
}

我现在想一次性将这些配料添加到我的食谱中。这就是我目前制作食谱的方式:

@IBAction func addRecipe(_ sender: Any) {

guard let itemNameText = recipeName.text else { return }

guard itemNameText.characters.count > 0 else {

print("Complete all fields")
return
}

let recipeKey = databaseRef.child("RecipeData").child("recipe").childByAutoId().key
let recipeItem: [String : Any] = ["recipeName" : itemNameText, "recipeID" : recipeKey]
let recipe = ["\(recipeKey)" : recipeItem]

databaseRef.child("RecipeData").child("recipe").updateChildValues(recipe)

print("\(itemNameText) was added")
}

这是结果:

{
"RecipeData": {
"recipe": {
"-Kkv36b_aPl7HAO_VYaJ": {
"recipeName": "Spaghetti Carbonara",
"recipeID": "-Kkv36b_aPl7HAO_VYaJ"
}
}
}
}

如何添加配料?目前我可以在 Firebase 上手动添加它。但我希望能够有一个 Action 来保存整个食谱和配料。大多数示例都给出了一个包含一组已声明属性的字典。然而,我的食谱可以是随机的,因为每个食谱的配料数量都是随机的。

最佳答案

在您的 addRecipe 函数中,试试这个:

...
let ingredients: [String] = ...
var ingredientsJSON = [String: Bool]()
for key in ingredients {
ingredientsJSON[key] = true
}
let recipeJSON: [String : Any] = [
"recipeName" : itemNameText,
"recipeID" : recipeKey,
"ingredients": ingredientsJSON
]
let recipe = ["\(recipeKey)" : recipeJSON]
databaseRef.child("RecipeData").child("recipe").updateChildValues(recipe)
...

关于ios - 使用 Swift 在 Firebase 中保存键值字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44218870/

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