快速从firestore的结构中检索值 [英] retrieve values from firestore's struct in swift

查看:53
本文介绍了快速从firestore的结构中检索值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在查询Firestore中的一些数据,并将其放入Usersdata中,但是我不知道如何从Usersdata获取我的值.

I'm querying some data from my firestore,and I put it in my Usersdata, but I dont know how to get my values from Usersdata.

请帮助我查询数据!

这是我基于Firestroe示例的结构

This is my struct base on Firestroe example

struct Usersdata {
let uid:String?
let facebook:String?
let google:String?
let name:String?
let age:Int?
let birthday:String?
let smokeage:Int?
let smokeaddiction:Int?
let smokebrand:String?
let gold:Int?
let score:Int?
let fish:Int?
let shit:Int?
let userimage:String?
init?(dictionary: [String: Any]) {
    guard let uid = dictionary["uid"] as? String else { return nil }
    self.uid = uid
    self.facebook = dictionary["facebook"] as? String
    self.google = dictionary["google"] as? String
    self.name = dictionary["name"] as? String
    self.age = dictionary["age"] as? Int
    self.birthday = dictionary["birthday"] as? String
    self.smokeage = dictionary["smokeage"] as? Int
    self.smokeaddiction = dictionary["smokeaddiction"] as? Int
    self.smokebrand = dictionary["smokebrand"] as? String
    self.gold = dictionary["gold"] as? Int
    self.score = dictionary["score"] as? Int
    self.fish = dictionary["fish"] as? Int
    self.shit = dictionary["shit"] as? Int
    self.userimage = dictionary["userimage"] as? String
    }   
}

这是我从Firebase查询数据的功能

this is my function to query data from firebase

 func test(schema:String , collection:String , document : String){
    let queryRef = db.collection("Users").document(userID).collection(collection).document(document)
    queryRef.getDocument { (document, error) in
        if let user = document.flatMap({
            $0.data().flatMap({ (data) in
                return Usersdata(dictionary: data)
            })
        }) {
            print("Success \(user)")
        } else {
            print("Document does not exist")
        }
    }
}

推荐答案

我认为您在问如何使用Firebase数据处理结构.这是一个可以读取已知用户的解决方案,用该数据填充结构,然后打印uid和名称.

I think you are asking how to work with a structure with Firebase data. Here's a solution that will read in a known user, populate a structure with that data and then print the uid and name.

假设一个结构

Users
  uid_0
    name: "Henry"

然后是保存该数据的结构

and then a structure to hold that data

struct Usersdata {
    let uid:String?
    let user_name:String?
    init(aDoc: DocumentSnapshot) {
        self.uid = aDoc.documentID
        self.user_name = aDoc.get("name") as? String ?? ""
    }
}

以及读取该用户,填充结构并从结构中打印出数据的功能

and a function to read that user, populate the struct and print out data from the struct

func readAUser() {
    let docRef = self.db.collection("Users").document("uid_0")
    docRef.getDocument { (document, error) in
        if let document = document, document.exists {
            let aUser = Usersdata(aDoc: document)
            print(aUser.uid, aUser.user_name)
        } else {
            print("Document does not exist")
        }
    }
}

和输出

uid_0 Henry

这篇关于快速从firestore的结构中检索值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆