Method doesn't exists while using in subscribe section of Angular
问题 Angular: calling two service method with forkJoin Try to process the result in another method in subscription Finally calling another method from process method and getting error, that method doesn't exists Here is the code: onLoad(){ forkJoin([ this.service1.getData(), this.service2.fetchData(id) ]).subscribe( this.processData, errors => { this.error = true; }, () => { this.loading = false; }) }; processData(response: any){ recordA = response[0]; recordB = response[1]; this.validateData