在我的AngularFire2数据库中,对于其中一个JSON条目想知道长度或大小 - 有多少父节点可用?
如何获得物品的大小?如果它为零(项目条目不在那里),我将推送一个项目:
items: FirebaseListObservable<any>;
this.items.push(item);
this.items = af.database.list('/items', { preserveSnapshot: true });
this.items
.subscribe(snapshots => {
snapshots.forEach(snapshot => {
console.log(snapshot.key)
console.log(snapshot.val())
});
})