这是我现在拥有的代码:

 var url = 'https://*****.firebaseio.com/photos';
var promise = angularFire(url, $scope, 'photos', {});

promise.then(function() {

    //limit here.

});

我可以插入什么代码以将Firebase返回的内容限制为仅具有指定优先级的代码(例如,优先级为“新”)?

谢谢您的帮助。

最佳答案

只需将已经有限的查询传递给angularFire,如下所示:

var ref = new Firebase("https://*****.firebaseio.com/photos");
var promise = angularFire(ref.startAt("new"), $scope, "photos", {});

10-04 20:12