Я пытался внедрить службу (contact.service.ts) в компонент (contact-list.component) Служба (или данные), которые я пытаюсь предоставить компоненту, - это сведения о сотрудниках (определенные в contacts.ts). ,Я успешно получил данные, но не смог обработать их с помощью ngFor
--------- contacts.ts ---------------
export interface Contacts {
contactsList: Contact[];
}
export interface Contact {
id: number;
name: string;
city: string;
}
------------ contact.service.ts -----------
import { HttpClient } from '@angular/common/http';
import { Observable, of } from 'rxjs';
import { Contacts } from '../models/contacts';
// @Injectable({
// providedIn: 'root'
// })
export class ContactService {
url = 'http://www.mocky.io/v2/5c5d880f3200000e11220880';
constructor(
private http: HttpClient
) { }
getContacts(): Observable<Contacts> {
// make http request to the given url and fetch the contacts
// return of({contactsList: []});
return this.http.get<Contacts>(this.url);
}
}
----------- contact-list.component --------------
import { ContactService } from 'src/app/services/contact.service';
import { Contacts } from 'src/app/models/contacts';
@Component({
selector: 'app-contact-list',
templateUrl: './contact-list.component.html',
styleUrls: ['./contact-list.component.css']
})
export class ContactListComponent implements OnInit {
contacts;
constructor(
private _contactService: ContactService
) { }
ngOnInit() {
this._contactService.getContacts()
.subscribe(data => this.contacts=data);
}
}
Вот что я пытался отрендерить
<p class="title"> Contact Applications </p>
<div class="list">
<p *ngFor="let contact of contacts">
{{contact.name}}
</p>
</div>
ипривело к этой ошибке
ERROR: Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays.