-1
packages:{
pack-a : "true",
pack-b : "true",
pack-c : "false",
pack-d : "true",
pack-e : "true",
}
我想如果存在一個包的狀態是真實的使用索引在firebase中。如何在Firebase中使用索引編寫查詢?
packages:{
pack-a : "true",
pack-b : "true",
pack-c : "false",
pack-d : "true",
pack-e : "true",
}
我想如果存在一個包的狀態是真實的使用索引在firebase中。如何在Firebase中使用索引編寫查詢?
這可能是閱讀Firebase documentation on queries的好時機:
var ref = new Firebase('https://yours.firebaseio.com/packages');
var query = ref.orderByValue().equalTo('true');
query.on('value', function(snapshot) {
console.log('Are there packages? '+snapshot.hasChildren());
});