firebase - 过滤器不等于

时间:2017-08-21 09:51:04

标签: javascript firebase filter firebase-realtime-database

我有一个firebase数据库,我想从中检索所有项目除了具有特定值的项目。像notEqualTo()这样的函数,可以这么说。

firebase.database()
  .ref().child('/snippets/')
  .orderByChild('description')
  .notEqualTo('dontDisplay')
  .on('value',function(snap) {
    // Working with the right snapshot
  }

这显然不起作用,因为notEqualTo不是一个函数。我也试过将一个函数传递给equalTo,但这也不起作用:

firebase.database()
  .ref().child('/snippets/')
  .orderByChild('description')
  .equalTo(function (descr) { descr !== 'dontDisplay'; })
  .on('value',function(snap) {
    // Working with the right snapshot
  }

过滤不具有描述的商品的正确方法' dontDisplay'?

0 个答案:

没有答案