我注意到firebase文档here
中的'〜'符号var ref = new Firebase("https://dinosaur-facts.firebaseio.com/dinosaurs");
ref.orderByKey().startAt("b").endAt("b~").on("child_added", function(snapshot) {
console.log(snapshot.key());
});
还有其他可以在firebase中使用的'〜'表达式吗?我很好奇是否有一个像.contains(string)
那样的运算符而不是全部取出然后过滤数据。我试图让自己远离弹性搜索。
答案 0 :(得分:2)
据我所知,Firebase API中没有.contains
这样的内容。
最好的办法是编写一个实用程序函数,用于获取数据并为您过滤。