Firebase의 여러 where 절을 기반으로하는 쿼리
질문 { "movies": { "movie1": { "genre": "comedy", "name": "As good as it gets", "lead": "Jack Nicholson" }, "movie2": { "genre": "Horror", "name": "The Shining", "lead": "Jack Nicholson" }, "movie3": { "genre": "comedy", "name": "The Mask", "lead": "Jim Carrey" } } } 저는 Firebase 초보자입니다. 여기서 genre = 'comedy' AND lead = 'Jack Nicholson' 위의 데이터에서 결과를 검색하려면 어떻게해야하나요? 어떤 옵션이 있습니까? 답변1 Firebase의 쿼리 API ..