init(snapshot: FIRDataSnapshot) { key = snapshot.key itemRef = snapshot.ref if let postContent = snapshot.value!["content"] as? String { // error content = postContent } else { content = "" }}
我一直在寻找答案,找不到用FireBase解决这个问题的答案.我该如何解决这个错误?
解决方法 snapshot.value的类型为Any?,因此您需要先将其强制转换为基础类型,然后才能下标.由于snapshot.value!.dynamicType是NSDictionary,使用可选的强制转换为? NSDictionary建立类型,然后可以访问字典中的值:if let dict = snapshot.value as? NSDictionary,postContent = dict["content"] as? String { content = postContent} else { content = ""}
或者,你可以做一个单行:
content = (snapshot.value as? NSDictionary)?["content"] as? String ?? ""总结
以上是内存溢出为你收集整理的ios – 类型’Any’没有下标成员(firebase)全部内容,希望文章能够帮你解决ios – 类型’Any’没有下标成员(firebase)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)