Firestore - 使用querySnaphot

时间:2018-06-12 22:09:50

标签: swift firebase foreach google-cloud-firestore

目前我已经得到它,以便当用户点击按钮时,FirstCollection中的所有文档都会被复制到名为SecondCollection的集合中,该集合效果很好!

我现在要做的是在新创建的名为SecondCollection的集合的所有文档中使用字段中的Int值(numberValue)。然后使用这些值在文档中名为“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")
                        }
                    })
                }
            }
        }
    }
}

目前正在做什么

  1. FirstCollection

    • documentID。
      • 姓名:姓名。
      • numberValue:3。
    • documentID。
      • 姓名:姓名。
      • numberValue:2。
  2. SecondCollection

    • documentID。
      • 姓名:姓名。
      • numberValue:3。
      • SecondSubCollection 即可。
        • documentID。
          • 值:1。
    • documentID。
      • 姓名:姓名。
      • numberValue:2。
      • SecondSubCollection 即可。
        • documentID。
          • 值:1。
  3. 我想做什么

    1. FirstCollection

      • documentID。
        • 姓名:姓名。
        • numberValue:3。
      • documentID。
        • 姓名:姓名。
        • numberValue:2。
    2. SecondCollection

      • documentID。
        • 姓名:姓名。
        • numberValue:3。
        • SecondSubCollection 即可。
          • documentID。
            • 值:1。
          • documentID。
            • 值:2。
          • documentID。
            • 价值:3。
      • documentID。
        • 姓名:姓名。
        • numberValue:2。
        • SecondSubCollection 即可。
          • documentID。
            • 值:1。
          • documentID。
            • 值:2。

1 个答案:

答案 0 :(得分:0)

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

@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")
            }
        })
    }
}