我们如何从Firestore获取选定的行特定DocumentID?我只希望选定的行Document ID而不是所有ID

时间:2019-07-02 07:10:52

标签: swift firebase google-cloud-firestore

我要选择特定选定行的documentID。我不能只获得单个documentID,请帮助从选定行中查找特定ID。

for document in querySnapshot!.documents {
                    print("\(document.documentID) => \(document.data())")
                   // self.postArray.updateValue("\(document.data())", forKey: "\(document.documentID)")
                    if document.data().isEmpty == false
                    {
                    self.post.append("\(document.data()["postdata"] as! String)")
                    }
                    self.tableview.reloadData()
                }
 //I get whole id from this loop.and store data in post->array.

 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    }

0 个答案:

没有答案