firebaeのデータをlike検索できないというのは知っているのですが、like検索風のことをできないかと考えて以下のようなコードを書きました。しかしながらwherefieldのisequaltoを使用した状況でdetail.countを行うと「1」が返ってきてしまいます。これはdetailという配列には複数のdocumentidが入っているのではなく、上書きされた結果一つしか入っていないということだと思います。。私が期待しているのはdetailsにはいったものを上書きせずに表示したいです。self.details += [room]を使用すれば上書きせずに配列に追加可能だと聞いたのですができません。
何か解決策がわかる方がいらっしゃいましたらご回答いただけると幸いです。
swift
1 2 let ref = Firestore.firestore().collection("users").document("kklr").collection("data") 3 ref.getDocuments() { (querySnapshot, err) in 4 if err != nil { 5 6 } else { 7 for doc in querySnapshot!.documents { 8 let documentID = doc.documentID 9 if documentID.contains(self.outputValue1) || documentID.contains(self.outputValue2) || documentID.contains(self.outputValue3) || documentID.contains(self.outputValue4) || documentID.contains(self.outputValue6) { 10 print(documentID)//ここではfirebaseのdataに入っている条件を満たすデータのidが返ってくる 11 let refs = ref.whereField("room", isEqualTo: documentID) 12 refs.getDocuments() { (querySnapshot, error) in 13 if let error = error { 14 print("DEBUG_PRINT: snapshotの取得が失敗しました。 (error)") 15 return 16 } 17 18 self.details = [] 19 querySnapshot?.documents.forEach { querySnapshot in 20 print(self.details.count) 21 let dic = querySnapshot.data() 22 let room = Room(dic: dic) 23 self.details += [room] 24 25 } 26 self.searchedc.reloadData() 27 self.details.forEach{(rooms) in 28 } 29 } 30 } 31 } 32 } 33 } 34
あなたの回答
tips
プレビュー