Firebase Real Database数据获取

时间:2018-11-16 15:23:18

标签: ios swift firebase firebase-realtime-database nsdictionary

我正在尝试获取以下值作为变量

enter image description here

但是我的代码给了我

ref.child("users").child(userID!).observeSingleEvent(of: .value, with: { (snapshot) in
    // Get user value
    let value = snapshot.value as? NSDictionary
    let userInfo = value?["UserInfo"] as? NSDictionary
    let data = userInfo?["lat"] as? String ?? ""
    print(data)


    // ...
}) { (error) in
    print(error.localizedDescription)
}

ً我想念什么?

1 个答案:

答案 0 :(得分:1)

您只需在这里做一个小改动:

let data = userInfo?["lat"] as? String ?? ""

纬度不是字符串,而是Int,因此应转换为Int:

let data = userInfo?["lat"] as? Int ?? 0