gpt4 book ai didi

javascript - Firebase 获取单个项目

转载 作者:行者123 更新时间:2023-12-03 05:55:22 25 4
gpt4 key购买 nike

我正在尝试创建一个页面,在单个页面上显示来自 Firebase 数据库的单个项目数据。

<小时/>

在我的app.router.ts中,我有:

{ path: 'song/:key', component: SongDetailsComponent }
<小时/>

在我的song-details.component.ts中,我有:

song:any;

constructor(private _route: ActivatedRoute, private _firebaseService: FirebaseService) {}

ngOnInit() {
this._route.params.forEach((params: Params) => {
let id = params['key'];
this.song = this._firebaseService.getSong(id);
});
}

在我的song-details.componenet.html中我有:

{{ song | json }}
<小时/>

在我的firebase.service.ts中我有

  songsDatabaseRef: any;

constructor(private _angularFire: AngularFire) {
this.songsDatabaseRef = _angularFire.database.list('songs');
}

getSong(key: string) {
return this._angularFire.database.list('songs/'+key);
}
<小时/>

但是当我转到指定的路线查看歌曲的详细信息时,我收到错误:

error_handler.js:45 EXCEPTION: Uncaught (in promise): 
Error: Error in ./SongDetailsComponent class SongDetailsComponent -
inline template:0:0 caused by: Converting circular structure to JSON
<小时/>

添加异步管道后,我得到了要显示的数据,但无法访问 json 对象的属性。

<小时/>

这是json对象:

{ "artist": "Two Friends Big Bootie Mixes", "audio": "https://api.soundcloud.com/tracks/286347553/stream?client_id=90d140308348273b897fab79f44a7c89", "dateCreated": "9/10/2016", "download": "http://smarturl.it/BB10Download", "genres": { "bass": 0, "dubstep": 30, "future": 0, "hipHop": 0, "house": 50, "indie": 0, "pop": 0, "techno": 20 }, "image": "https://i1.sndcdn.com/artworks-000186905340-xin8sf-t500x500.jpg", "title": "2F Big Bootie Mix, Volume 10 - Two Friends", "url": "http://soundcloud.com/twofriendsmixes5/bb10", "$key": "-KTgBcZudwBfhKcm68aa" }
<小时/>

当我尝试获取任何属性时,它说它是未定义。例如:

song title: {{(song | async | json)?.title}} 

这将返回 null!

有什么建议吗?

最佳答案

this._angularFire.database.list('songs/'+key) 是一个 Observable (FirebaseListObservable)。您需要订阅它才能获取数据。

您可以使用:

{{ song | async | json }}

关于javascript - Firebase 获取单个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39951492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com