在Angular 2 firebase中迭代Object

时间:2017-11-14 12:19:20

标签: angular firebase firebase-realtime-database

我的firebase数据库中有一个对象要循环。问题是我无法在我的代码上循环推送ID。所以这是我的数据库的结构。

enter image description here

我可以使用我的代码获取数据。

 this.userGroup = this.db.list('user_group')
 this.userGroup.subscribe(snap => {

     snap.forEach(item => {
        console.log(item); 

     });


 })

所以这是将产生的数据。  enter image description here

如果我写console.log(item.group_company)当然存在数据,那么它就会显示出来。那么如何迭代group_company上的数据呢?如果我写

item.company_group.forEach(company_item => {
    console.log(company_item);
});

即使我使用item.company_group.val(),它也会给我一个错误。

0 个答案:

没有答案