目前,我已经知道了,以便用户单击按钮时,然后将FirstCollection中的所有文档复制到一个名为SecondCollection的集合中,效果很好!

我现在想做的是在新创建的名为SecondCollection的集合的所有文档中使用字段(numberValue)中的Int值。然后使用这些值在文档的名为“ SecondSubCollection”的子集合中创建多个文档。

例如,假设一个文档中的numberValue为3,我想执行一个批处理请求,并在该文档的名为“ SecondSubCollection”的子集合下创建3个文档。然后用一个请求对SecondCollection中的所有文档执行此操作。

请查看下面到目前为止我所获得的代码。目前,当我按下该按钮时,它仅在每个子集合中创建一个文档,这与我想要的方式不起作用。我想让它创建多个文档(如果numberValue在文档中为3,则它应该在文档的子集合中创建3个文档)。

希望这更有意义!任何帮助将不胜感激,谢谢!



@IBAction func goButton(_ sender: UIButton) {

    let userRef = db.collection("Users").document(user!)

    userRef.collection("SecondCollection").document(firstID).setData(["name" : "name"]) {
        error in

        if let error = error {
            print("Error adding document: \(error.localizedDescription)")
        } else {
            print("Document added with ID")
        }
    }

    let firstRef = userRef.collection("FirstCollection")

    firstRef.getDocuments { (querySnapshot, err) in
        if let err = err {
            print("Error getting documents: \(err)")
        } else {
            if let snapshot = querySnapshot {
                for document in snapshot.documents {
                    let data = document.data()
                    let name = data["name"] as? String ?? ""
                    let numberValue = data["numberValue"] as? Int ?? Int()
                    let batch = self.db.batch()
                    let docset = querySnapshot

                    let integerArray = [Int](1...numberValue)

                    let secondID = UUID().uuidString

                    let secondRef = userRef.collection("SecondCollection").document(secondID)

                    docset?.documents.forEach {_ in batch.setData(["name" : name, "numberValue" : numberValue], forDocument: secondRef)}

                    \\ the code that isn't working properly at the moment
                    let secondSubRef = secondRef.collection("SecondSubCollection").document()
                    docset?.documents.forEach {integerArray in batch.setData(["value" : Int], forDocument: secondSubRef)}


                    batch.commit(completion: { (error) in
                        if let error = error {
                            print("\(error)")
                        } else {
                            print("success")
                        }
                    })
                }
            }
        }
    }
}


目前正在做什么


FirstCollection:


documentID。


名称:名称。
numberValue:3。

documentID。


名称:名称。
numberValue:2。


SecondCollection:


documentID。


名称:名称。
numberValue:3。
SecondSubCollection。


documentID。


值:1。



documentID。


名称:名称。
numberValue:2。
SecondSubCollection。


documentID。


值:1。






我想做什么


FirstCollection:


documentID。


名称:名称。
numberValue:3。

documentID。


名称:名称。
numberValue:2。


SecondCollection:


documentID。


名称:名称。
numberValue:3。
SecondSubCollection。


documentID。


值:1。

documentID。


值:2。

documentID。


值:3。



documentID。


名称:名称。
numberValue:2。
SecondSubCollection。


documentID。


值:1。

documentID。


值:2。

最佳答案

这是我工作的(简化的)解决方案:(非常感谢杰伊的巨大帮助!)

@IBAction func goButton(_ sender: UIButton) {

    let userRef = db.collection("Users").document(user!)

    let array = [1, 2, 3]

    array.forEach { number in

        let batch = self.db.batch()

        let docRef = userRef.collection("FirstCollection").document()

        batch.setData(["numberValue" : number], forDocument: docRef)

    }

    batch.commit(completion: { (error) in
        if let error = error {
            print("\(error)")
        } else {
            print("success")
        }
    })
}

10-05 20:22