我的用例涉及用“ array-contains-all”过滤Firestore文档,此名称是我为解决此问题而组成的。但是,'array-contains-any'已经存在,但是它不会检查数组中是否存在所有元素,而是所有元素。我很难找到一个内置的解决方案或找到一个更好的方法来获得相同的结果,而不是查询所有文档(很昂贵),然后在最终数组传递给客户端之前在Cloud Function中过滤结果。
举个例子,我们想知道哪些住宿场所具有我们感兴趣并希望查询的以下所有设施:
[
'lockable_bedroom_door',
'private_bathroom',
'internet',
'desk',
'safe_place_to_store_valuables'
]
所有13个可用设施中的一个:
[
'kettle',
'microwave',
'cooker',
'washing_machine',
'fully_functional_kitchen',
'lockable_bedroom_door',
'private_bathroom',
'shared_bathroom',
'internet',
'desk',
'common_room_lounge',
'safe_place_to_store_valuables',
'free_on-site_parking'
]
如何同时记住Firestore的限制和用户可能选择的设施数量?
答案 0 :(得分:1)
只要您像现在一样使用列表类型字段,就不会有一种查询方法可以使您发现效率高。如果您将数据复制到新的地图类型字段中,则可以。
facilities: {
'kettle': true
'microwave': true
'cooker': true
}
有了包含已知布尔值的映射,您可以像这样查询:
firestore
.collection("your-collection")
.where("facilities.kettle", "==", true)
.where("facilities.microwave", "==", true)
.where("facilities.cooker", "==", true)