我是 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();
}
谢谢您的帮助。