OGeek|极客世界-中国程序员成长平台

标题: ios - 无法检索数据并在 UIBarButton 中使用它 - Firebase Swift 3 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 12:14
标题: ios - 无法检索数据并在 UIBarButton 中使用它 - Firebase Swift 3

我正在尝试检索用户的用户名并将其保存到变量中,尽管每当我运行代码时都没有任何反应。这是我的 Firebase 布局: enter image description here

这是我的代码,在我的 viewDidAppear()

let uid = FIRAuth.auth()?.currentUser?.uid
let ref:FIRDatabaseReference!
ref = FIRDatabase.database().reference().root.child("users").child("\(uid)")
ref.observeSingleEvent(of: .value, with: { snapshot in
    print("test")
    if !snapshot.exists() { return }

    let user = (snapshot.value as? NSDictionary)?["name"] as? String ?? ""
    print(user)
    let username = UIBarButtonItem(title: user, style: UIBarButtonItemStyle.plain, target: self, action: nil)
    let picture = UIBarButtonItem()
    self.navigationController!.navigationItem.rightBarButtonItem = username
})



Best Answer-推荐答案


尝试使用:-

FIRDatabase.database().reference().root.child("users").child("\(FIRAuth.auth()!.currentUser!.uid)")observeSingleEvent(of: .value, with: { snapshot in
   print("test")
   if let snapDict = snapshot.value as? [String:AnyObject]{
          let user = snapDict["name"] as! String
          print(user)
          let username = UIBarButtonItem(title: user, style: UIBarButtonItemStyle.plain, target: self, action: nil)
          let picture = UIBarButtonItem()
          self.navigationItem.rightBarButtonItem = username
        } else {
           print("No such user exists!.")
      }
 })

关于ios - 无法检索数据并在 UIBarButton 中使用它 - Firebase Swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40054043/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4