(对“值”的含糊用法)在DataSnapshot.value中作为?串

时间:2019-09-24 17:23:45

标签: xcode firebase

我正在尝试将侦听器设置为我的Firebase数据库,并且我正在尝试将数据值转换为字符串 ..但是我在DataSnapshot.value中得到一个错误提示(“ value”的歧义使用)?字符串

我正在使用xcode 10.3

 databaseHandle = ref?.child("Users").child("Thoughts").observe(.childAdded, with: { (<#DataSnapshot#>) in
            //code to execute when a new post is added
            // take the value from the snapshot and add it to the postData array
           let post = DataSnapshot.value as? String

        if let actualPost = post{
            self.postData.append(actualPost)

            self.tableView.reloadData()

        })

0 个答案:

没有答案