在Firebase中查询数据时是否还有其他运算符?

时间:2015-04-17 15:02:06

标签: javascript firebase ionic-framework angularfire

我注意到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)那样的运算符而不是全部取出然后过滤数据。我试图让自己远离弹性搜索。

1 个答案:

答案 0 :(得分:2)

据我所知,Firebase API中没有.contains这样的内容。

最好的办法是编写一个实用程序函数,用于获取数据并为您过滤。