我尝试使用此代码记录firebaseArray中每个项目的信息:
$scope.events = $firebaseArray(ref.child('event').orderByChild('uid').equalTo(Auth.$getAuth().uid));
$scope.events.$loaded( function(snapshot){
console.log(snapshot.val());
})
我收到此错误:snapshot.val is not a function
答案 0 :(得分:0)
Angular 1.2似乎与firebaseArray有这个问题。我也有同样的问题,并将角度升级到1.4.5为我做了诀窍。您也可以尝试: refered link。