我试图获得一个简单的数组的长度,但angularFireCollection
似乎无法:
var stf = new FireBase("http://myfirebase-app.firebaseio.com/staff");
function staffListCtrl($scope, angularFireCollection){
$scope.staff = angularFireCollection(stf);
console.log($scope.staff.length);
}
控制台中的输出显示:
0
我知道这是不正确的。它应该返回大约 5 作为长度(请参阅下面的屏幕截图以获取$scope.staff
.
感谢任何帮助,因为我似乎无法完成这个绝对、完全简单的 JS 任务。