gpt4 book ai didi

ios - 无法到达 Firestore 后端

转载 作者:搜寻专家 更新时间:2023-10-30 22:17:11 27 4
gpt4 key购买 nike

我正在创建一个 swift 4 ios 应用程序,并想使用 Firestore 来存储我的所有数据。我已经阅读了入门指南并观看了在线教程,但我仍然收到错误消息:

"4.8.1 - [Firebase/Firestore][I-FST000001] Could not reach Firestore backend."

我的 cocoapods 文件包含:

pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'

AppDelegate 中:我导入 Firebase 并在 didFinishLaunchingWithOptions 中我做 FirebaseApp.configure()

在 viewController 中:import Firebase(也尝试过 import FirebaseFirestore)

我定义:

var docRef : DocumentReference! 

并在 viewDidLoad 中:

docRef = Firestore.firestore().document("test/test")

docRef.getDocument { (docSnapshot, error) in
guard let docSnapshot = docSnapshot, docSnapshot.exists else {return}
let myData = docSnapshot.data()
let val = myData!["name"] as? integer_t ?? 1
print(val)
}

我得到了错误

"4.8.1 - [Firebase/Firestore][I-FST000001] Could not reach Firestore backend."

我将我的 firestore 设置为测试模式,因此应该允许所有读取和写入。有人知道为什么我无法连接到后端吗?

最佳答案

在我的例子中,我试图将数据添加到 Firebase 控制台的“实时数据库”,然后读入我的新 AngularFire2 应用程序。一段时间后意识到它必须是“Cloud Firestore”。

关于ios - 无法到达 Firestore 后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48349725/

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