使用Swift在Cloud Firestore中添加子集合

时间:2019-05-18 14:40:15

标签: swift google-cloud-firestore

我有一个简单的问题。我在Cloud Firestore中有一个现有文档,我只是想向该文档添加一个子集合,然后向该子集合添加一个文档。

以下是我认为应该做的事情的代码,但不幸的是,我做不到。而且我也没有任何错误。

var ref: DocumentReference? = nil
ref = db.collection("users").document("John").collection("newSubcollection").addDocument(data: [
                        "age": 25
                    ]) { error in
                        if let err = err {
                            print("Error adding subcollection: \(err)")
                        } else {
                            print("subcollection added with ID: \(ref!.documentID)")
self.dismiss(animated: true, completion: nil)
                        }

                    }

我得到的消息是它成功创建了子集合,但是我没有看到它。怎么了?

0 个答案:

没有答案