检索具有不同ID的Firebase数据

时间:2018-09-24 16:05:03

标签: firebase ionic-framework firebase-realtime-database

我有一个带有Firebase数据库的Ionic应用程序。

enter image description here

如何在离子页面的“ * ngFOr”中显示“ calendario”数据库中的所有数据?

我在这里接收我的数据: console.log(data); in Google Chrome

但是当我尝试在* ngFor中显示时,我发现了一个错误:

"Error trying to diff '[object Object]'. Only arrays and iterables are allowed"

我的data.ts

items: any;

  this.afDatabase.object(`calendario`).valueChanges().subscribe(data => {
 console.log(data);

 this.items = data;

0 个答案:

没有答案