第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

API 結(jié)果說它是空的,但它不是

API 結(jié)果說它是空的,但它不是

慕萊塢森 2023-05-25 16:50:11
我制作了一個 API 來顯示用戶的關(guān)注者和關(guān)注用戶。一切都在屏幕上正確顯示。但問題是,如果我在console.log()調(diào)用它說它是一個空數(shù)組的方法后嘗試存儲它的數(shù)組。我真的被困住了,不知道該怎么辦。這是我的示例,有人可以幫忙或遇到同樣的問題請告訴我。使用 OnInit:ngOnInit(): void {    localStorage.setItem("gd", "78F88FC0-7A58-49CD-881E-4B36C5C29B71");    this.getUsers();    this.getFollowing();    this.getFollowers();    console.log("Followers: ", this.followers)    console.log("Following: ", this.following)}方法:getUsers() {    this._userService.getUsers().subscribe(res => {      this.users = res;    })  }  getFollowing() {    this._userService.getFollowing().subscribe(res => {      this.following = res;    })  }  getFollowers() {    this._userService.getFollowers().subscribe(res => {      this.followers = res;    })  }安慰:HTML 輸出:
查看完整描述

1 回答

?
RISEBY

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,我們訂閱組件


查看完整回答
反對 回復(fù) 2023-05-25
  • 1 回答
  • 0 關(guān)注
  • 109 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號