Wait for Service Api call to complete in Angular 8
问题 I am trying my first Angular 8 Crud Web app and wrote a page to list some company names from WebApi My Service is correctly getting data and Iam able to print it on console //Service.ts export class CompanyService { allCompanys: Company[] constructor(private httpClient: HttpClient) { } // Returns all the companys GetAll(): Company[] { this.httpClient.get<Company[]>('https://localhost:565656/api/company').subscribe(result => { this.allCompanys = result; //Shows data Sucessfully from Server