使用地图后,我尝试过滤数据,但出现错误消息:
data.favorite.filter不是函数
我在哪里错了?
数据库结构:
uid{
name
age
favorite{
id{
name
}
}
}
this.db.getDataObj("/Profile/" + this.uid).pipe(
map(data =>
data.favorite.filter(c=>
c.name === this.name))).subscribe(res => console.log(res));