当我搜索“石头”时,我希望查询返回
{ first: 'Fred', last: 'Flintstone', }
However, the docs suggest I need to search for an exact match only.
usersRef.where("last", "==", "Flintstone")
并且不会返回部分匹配的“石头”。
是否可以获取部分字符串搜索匹配?
答案 0 :(得分:0)
firebase不支持此功能,因为您共享的链接提到它,可能您想使用诸如algolia之类的工具来实现该用例,并使用云功能使其与Firestore保持同步。