0

我是 Angular 和 Firebase 的新手,我正在尝试将节点的所有项目都放到 AgularFireList 中,但出现此错误:

类型“{}[]”不可分配给类型“AngularFireList”。类型“{}[]”中缺少属性“查询”。

我的代码是:

my_notes: AngularFireList<any[]>;

constructor(public afDB: AngularFireDatabase) {
    this.getNotes()
      .subscribe(
        notas => {
          this.my_notes = notas;
        }
      );
  }

  getNotes(){
    return this.afDB.list('/notas').valueChanges();
  }

谢谢您的帮助。

4

1 回答 1

0

尝试这个:

constructor(public afDB: AngularFireDatabase) {
this.getNotes()
  .subscribe(
    (notas: AngularFireList<any[]>) => {
      this.my_notes = notas;
    }
  );
}

如果问题仍然存在,请尝试添加以下代码:

getNotes(){
    return <Observable<AngularFireList<any[]>>>this.afDB.list('/notas').valueChanges();
  }
于 2018-01-04T22:57:37.867 回答