ユーザーが入力した内容に一致するfirebaseの情報を検索・取得したいです。以下のようにコードを記述しました。
ユーザーが入力する項目は三つ(outputValue1、outputValue2、outputValue3)なのですが、この中の一つでもヒットする情報があれば取得するようにしたいです。しかし、下記のコードでは三つがfirebaseの情報と一致している場合しかデータを取得できません。outputValue1が空の状態だったりすると例えoutputValue2とoutputValue3と一致するデータが存在しても取得してくれません。
一つでもヒットしていれば取得するようにする方法を教えてください。よろしくお願いします。
swift
1 2 var aaa = Firestore.firestore().collection("oms").document("con").collection("city").limit(to: 10) 3 4 if outputValue1 != nil { 5 aaa = aaa.whereField("bs", isEqualTo: outputValue1 as Any) 6 7 if outputValue2 != nil { 8 aaa = aaa.whereField("ctl", isEqualTo: outputValue2 as Any) 9 } 10 if outputValue3 != nil { 11 aaa = aaa.whereField("dtf", isEqualTo: outputValue3 as Any) 12 } 13 14 aaa.getDocuments() { (snaps, error) in 15 if let error = error { 16 print("DEBUG_PRINT: snapshotの取得が失敗しました。 (error)") 17 return 18 }else{ 19 guard let snaps = snaps else { return } 20 for document in snaps.documents { 21 print(document.data()) 22 } 23 }} 24 25 26コード
あなたの回答
tips
プレビュー