如何初始化Firestore文档参考Swift

时间:2019-10-01 15:07:38

标签: ios swift model google-cloud-firestore initialization

我有一个下面的用户模型,它给了我User的字典。

import UIKit
import FirebaseFirestore

protocol SerializeUser {
    init?(dictionary: [String: Any])
}

struct User {
    var documentRef: DocumentReference?
    var displayName: String
    var photoURL: String
    var email: String
    var isEmployee: Bool

    var dictionary: [String: Any] {
        return ["displayName": displayName, "photoURL": photoURL, "email": email, "isEmployee": isEmployee]
    }
}

extension User: SerializeUser {
    init?(dictionary: [String: Any]) {
        guard
        let displayName = dictionary["displayName"] as? String,
        let photoURL = dictionary["photoURL"] as? String,
        let isEmployee = dictionary["isEmployee"] as? Bool,
        let email = dictionary["email"] as? String else { return nil }
        self.init(displayName: displayName, photoURL: photoURL, email: email, isEmployee: isEmployee)
    }
}

我需要在documentRef结构中初始化User,以某种方式了解如何实现这一点?请。

2 个答案:

答案 0 :(得分:0)

在某些地方需要数据库实例来构建文档引用。

var db: Firestore? = Firestore.firestore()

struct User {
    lazy var documentRef: db.collection("users").document(displayName)
}

我在这里没有看到引用的文档ID,因此我假设您使用displayName作为键。将变量声明为惰性变量可以让您使用其他实例变量对其进行初始化。

希望这会有所帮助。

答案 1 :(得分:0)

我已经通过使用本文中说明的可解码协议解决了这个问题; Using Decodable to get the object and document ID with Firestore