在我的项目中,我必须知道孩子的第一个也是最后一个关键。我在下面查询相同,我先用'我'找到但我不知道如何获得最后一个密钥?有任何方法可以设置Firebase查询完成是否可以与child_added
一起使用? 。在测试中,console.log(last)
但是undefinded
var i = 0;
myDataRef.limitToLast(10).on('child_added', function (snapshot){
if( i == 0)
{
first = snapshot.key;
}
renderInfo(snapshot.key, snapshot.val(), 'new');
last = snapshot.key;
});
console.log(last)