gpt4 book ai didi

ios - 无法访问 Firebase Snap 数据

转载 作者:行者123 更新时间:2023-11-28 12:28:52 25 4
gpt4 key购买 nike

我有一个 firebase 结构设置如下:

enter image description here

每个键都包含我想用来填充 UICollectionView 的数据。但是,我无法访问 Firebase 数据。在Android中,我使用了类似的方法

dataSnapshot.child("xxx").getValue()

但是,这种类型的辅助功能似乎在 iOS 中不可用。以下是我正在尝试的方法:

     self.dataSource = self.collectionView?.bind(to: self.ref.child("Polls")) { collectionView, indexPath, snap in
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! PollCell
/* populate cell */
cell.pollQuestion.text = snap.child("question").getvalue
print(indexPath)

return cell
}

我收到一条错误消息,指出“FIRDataSnapshot”类型的值没有子成员

最佳答案

如果你在 Android 上有这条线:

dataSnapshot.child("xxx").getValue()

在 iOS 上会是:

snapshot.childSnapshot(forPath: "xxx").value

我强烈建议使用 Firebase 引用文档来解决此类问题:https://firebase.google.com/docs/reference/ios/firebasedatabase/api/reference/Classes/FIRDataSnapshot#-childsnapshotforpath . FIRDataSnapshot 中的方法数量并不多,但它可以让您更快地取得进展。

关于ios - 无法访问 Firebase Snap 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42639916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com