我正在使用AngularFire 0.8
var test = $firebase(new Firebase(URL)).$asArray();
当我在console.log“test”时,我得到以下内容(见截图).
看起来test是一个数组.但是,当我执行“console.log(test [0])”时,我得到了未定义.
为什么不测试一个带有两个元素的数组,比如console.log(test)似乎表明它应该是???
帮帮我!!
很可能你在加载数据之前在数组上调用console.log.
要访问数组中的数据,您必须等到数据加载完毕.
原文链接:https://www.f2er.com/angularjs/143362.html要访问数组中的数据,您必须等到数据加载完毕.
要在代码中执行此操作,请使用以下构造:
var test = $firebase(new Firebase(URL)).$asArray(); test.$loaded().then(function(array) { console.log(array[0]); });
更新
这个答案得到的回报比我认为值得多.当您使用AngularJS和AngularFire时,使用console.log调试加载的数据通常是一个不好的预兆.
AngularFire documentation on handling asynchronous operations现在不得不说:
The easiest way to log the data is to print it within the view using Angular’s
json
filter.06001
AngularFire tells the Angular compiler when it has finished loading the data,so there is no need to worry about when it be available.