如何在Firebase数据库Xcode 9中以用户ID更新现有数据?

时间:2018-09-06 10:47:26

标签: json xcode firebase firebase-realtime-database xcode9

我正在尝试使用Xcode 9更新Firebase实时数据库中的现有用户数据。这是我添加餐食的代码:

// Actions
func addMeal() {
    let key = refRecipe.childByAutoId().key
    let meal = ["name" : nameTextField.text!,
                  "rating" : ratingControl.rating] as [String : Any]

refMeal.child((FIRAuth.auth()?.currentUser?.uid)!).child(key).setValue(meal)
}

当我更新名称或评级控件并保存新的JSON树时,而不是更新数据库中的现有树。

0 个答案:

没有答案