- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚在 Xcode
中更新到 Swift 3
,我不知道如何处理这个错误。谁能帮忙???
错误: InvalidFirebaseData',原因:'(setValue:) 无法将 _SwiftValue 类型的对象存储在 thumbnailUrlFromStorage。只能存储 NSNumber、NSString、NSDictionary 和 NSArray 类型的对象。
我的代码是:
// Create a url for data (tumbnail image)
self.fileUrl = metaData?.downloadURLs![0].absoluteString
if (FIRAuth.auth()?.currentUser) != nil {
let idRoom = self.BASE_REF.child("rooms").childByAutoId()
idRoom.setValue(["caption": caption, "thumbnailUrlFromStorage": self.storageRef.child(metaData!.path!).description, "fileUrl": self.fileUrl])
最佳答案
if (FIRAuth.auth()?.currentUser) != nil {
let idRoom = self.BASE_REF.child("rooms").childByAutoId()
let thumbnailUrlFromStorage: String = self.storageRef.child(metaData!.path!).description
let data: Dictionary<String, Any> = [
"caption": caption,
"thumbnailUrlFromStorage": thumbnailUrlFromStorage,
"fileUrl": self.fileUrl
]
idRoom.setValue(data)
}
不确定这是否可行,因为我没有机会运行它,但在我看来你正在传递 self.storageRef.child(metaData!.path!).description
作为无。
关于ios - InvalidFirebaseData',原因 : '(setValue:),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39675045/
我刚刚在 Xcode 中更新到 Swift 3,我不知道如何处理这个错误。谁能帮忙??? 错误: InvalidFirebaseData',原因:'(setValue:) 无法将 _SwiftValu
*** 由于未捕获的异常“InvalidFirebaseData”而终止应用程序,原因:“(setValue:) 无法将 DemoApp.SendMessageInput 类型的对象存储在 。只能存储
以下代码曾经运行良好,我能够将多个值保存到 Firebase 记录中。但是,自从升级到 Swift 3 (Xcode 8) 后,这不再有效。我现在收到以下错误: *** Terminating app
我正在尝试将 Firebase 集成到我的应用中,并希望以以下格式存储数据。 "chits": { "Chit-1": { "Bidders": [ { "bankAccNum
我是一名优秀的程序员,十分优秀!