1 回答

TA貢獻(xiàn)1856條經(jīng)驗 獲得超5個贊
我想不那么籠統(tǒng)地回答鏈接暴露的問題
我們可以使用 forkJoin 進(jìn)行所有調(diào)用并在唯一訂閱中獲得響應(yīng)
ngOnInit()
{
forkJoin(this._userService.getUsers(),
this._userService.getFollowing(),
this._userService.getFollowers())
.subscribe(([users,following,followers])=>{
this.users=users
this.following=following
this.followers=followers
console.log(this.users) //<---give value
})
console.log(this.users) //<--has no value outside subscribe function
}
是的,只有對訂閱功能有意義才能創(chuàng)建 console.log(this.users)
記住:服務(wù)返回 observables,我們訂閱組件
添加回答
舉報