react-native-realm模式匹配导致无效谓词

时间:2017-12-01 18:23:15

标签: react-native realm

我有这行代码:

realm.objects('Users').filtered("profile LIKE '%athletic%'")

我尝试了这行代码:

realm.objects('Users').filtered("profile LIKE '*athletic*'")

运行程序时出现错误profile LIKE '%athletic%':1:0: Invalid predicate。我无法在react-native-realm中找到模式匹配的文档。如何查找返回具有字符串运动的配置文件的用户的记录?

1 个答案:

答案 0 :(得分:1)

对于这种查询,您可以使用CONTAINS

realm.objects('Users').filtered("profile CONTAINS 'athletic'")

详细了解Realm-JS中使用的查询语言here