如何在Firebase Cloud Firestore中获取部分字符串查询匹配项?

时间:2019-06-04 21:11:43

标签: firebase google-cloud-firestore

当我搜索“石头”时,我希望查询返回

{ first: 'Fred', last: 'Flintstone', }

However, the docs suggest I need to search for an exact match only.

usersRef.where("last", "==", "Flintstone")

并且不会返回部分匹配的“石头”。

是否可以获取部分字符串搜索匹配?

1 个答案:

答案 0 :(得分:0)

firebase不支持此功能,因为您共享的链接提到它,可能您想使用诸如algolia之类的工具来实现该用例,并使用云功能使其与Firestore保持同步。