为了账号安全,请及时绑定邮箱和手机立即绑定

在 Angular 中异步 http 调用后数据消失

在 Angular 中异步 http 调用后数据消失

慕莱坞森 2022-12-22 12:00:46
我必须编写一个显示多个数据的树组件,这对我来说可以很好地处理模拟数据。这里的问题是当我尝试从服务器获取数据时,让我解释一下:我有三个主要对象:区域、建筑物和门。正如您可能猜到的,doors 指的是 buildingId,而 buildingID 指的是地区。因此,要检索数据并创建我的树节点,我必须在非异步的 forEach 循环中执行一些 http 调用。我不会与您分享所有内容,只会分享一个最小化的问题,以便我可以轻松获得帮助:此方法从服务器检索区域数组并将其放入本地数组中:async getDistricts(){   this.districtDataService.getDistrictData().toPromise().then(async districts => {     this.districts = await districts.results as District[];   });}在我的 ngOnInit 上:ngOnInit() {this.getDistricts().then(async () => {  console.log(this.districts);  for (const district of this.districts){    console.log(district);  }})第一个 console.log(在 NgOnInit 中)返回一个空数组,这很令人惊讶,因为第一个方法将数据放在“this.districts”中。并在我将其放入后立即在第一种方法中记录数据返回一个包含我的数据的数组。我想这与我使用的异步/等待有关。谁能帮忙?编辑 1:尝试使用 this.getDistricts().finally() 而不是 this.getDistricts().then(),但没有用。编辑 2:getDistrict 中的 console.log 在我的循环之前执行。预期的行为恰恰相反。已解决:在我的 HTTP 调用解决此问题后,将 for 循环放入 finally 块中。所以正如答案所说,我认为我过度设计了异步/等待调用。基于此,我不得不重新思考我的工作。谢谢大家!
查看完整描述

2 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

好吧,你应该把你的Promisefrom还给你getDistricts。此外,您过度设计并使async/await概念复杂化。我知道你不想使用Observables,但我还是建议你使用它们。


有了 promises,async/await你就会明白如何使用它们:


async getDistricts(): Promise<District[]> {

  const { results } = await this.districtDataService.getDistrictData();

  

  return results;

}


async ngOnInit(): Promise<void> {

  this.districts = await this.getDistricts();


  for (const district of this.districts){

    console.log(district);

  }

}

它Observable看起来像这样:


getDistricts(): Observable<District[]> {

  return this.districtDataService.getDistrictData().pipe(

    map(({ results }) => results as District[])

  );

}


ngOnInit(): void {

  this.getDistricts().subscribe((districts) => {

    this.districts = districts;

   

    for (const district of this.districts){

      console.log(district);

    } 

  });

}


查看完整回答
反对 回复 2022-12-22
?
拉莫斯之舞

TA贡献1820条经验 获得超10个赞

只是为了提供任何需要按所需顺序进行多个 http 调用的人。正如其他人所提到的,我将异步等待的概念过于复杂化了。诀窍是使用可观察对象,使用 .toPromise() 将它们转换为 Promises,使用 .then() 将数据放入我的变量中,然后使用 .finally(async () => { ... }).


这是我的最终代码:


async ngOnInit(): Promise<void> {

 await this.districtDataService.getDistrictData().toPromise().then(response => {

   this.districts = response.results as District[];

   console.log(this.districts);

 }).finally(async () => {

   for (const district of this.districts){

      await this.districtDataService.getBuildingsOfDistrict(district.id).toPromise().then(response => {

      this.buildings = response.results as Building[];

      console.log(this.buildings);

     }).finally(async ()=> {

        for(const building of this.buildings){

          await this.districtDataService.getDoorsOfBuilding(building.id).toPromise().then(response => {

            this.doors = response.results as Door[];

            console.log(this.doors);

          }).finally(async () => {

              for(const door of this.doors){

                  await this.doorNodes.push(new districtNodeImpl(false,null,null,door,null));

              }

          })

         await this.buildingNodes.push(new districtNodeImpl(false,null,building,null,this.doorNodes));

        }

     })

     await this.dataSource.push(new districtNodeImpl(false,district,null,null,this.buildingNodes));

     console.log(this.dataSource);

     this.buildingNodes = new Array();

     this.doorNodes = new Array();

   }

 })

希望这会有所帮助!祝你今天过得愉快。


查看完整回答
反对 回复 2022-12-22
  • 2 回答
  • 0 关注
  • 62 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信