在Firebase中了解孩子的孩子的价值

时间:2017-06-17 16:59:18

标签: ios swift firebase firebase-realtime-database

我正在尝试观察这个值: enter image description here

使用此代码: enter image description here

但是这给了我错误。我尝试过多次使用其他数据库方法,比如在一个孩子中将值为1除以值2.

1 个答案:

答案 0 :(得分:1)

试试这个

ref2.child("keywords").child("hello").child("hello").observe(.value, with: { snapshot in

    guard
        let dict = snapshot.value as? [String:Any],
        let value1 = dict["value1"] as? Int
    else { print("Error"); return }

    print(value1)

})
  

下次将代码粘贴为文本,而不是图像