我正在努力想出一些非常重要的东西,这看起来非常简单,但我只是碰壁了。我有一个使用Angular的Firebase项目设置(使用AngularFire)。在应用程序中有许多要点,其中记录被添加为数组,其中firebase结构具有奇怪的键,如下所示:
logs
-HD93Yt6vm9lXpOWDA09
type: 'status'
-HD93Yt6vm9lXpOWDA09
type: 'message'
-HD93Yt6vm9lXpOWDA09
type: 'status'
如何仅针对“状态”类型的日志进行查询?目前正在尝试这样做:
// create a reference to the Firebase where we will store our data
var ref = new Firebase("https://myFBapp.firebaseio.com/logs");
$scope.logs = ref.[how do I select these records]?
如果你知道你想要的东西的id就很容易了,所以我可以使用logs-> logId->类型..但是这让我很难过。我提前为新闻道歉。