我正在尝试将侦听器设置为我的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()
})