Answer the question
In order to leave comments, you need to log in
Angular data entry how?
export class FullModel {
constructor(
public firstName: string,
public lastName: string,
public avatar: string,
public company: string,
public title: string,
public email: string,
public phone: string,
public street: string,
public city: string,
public zipCode: string,
public country: string
) {
}
}
@Input()
member:FullModel[]
data1:any
search='';
constructor(private peopleService:PeopleService) { }
ngOnInit() {
this.peopleService.getPeople().subscribe(data =>
{
this.data1=data;
for(let i in this.data1) {
this.member[i].firstName= this.data1[i].general.firstName;
this.member[i].lastName= this.data1[i].general.lastName;
this.member[i].avatar= this.data1[i].general.avatar;
this.member[i].company= this.data1[i].job.company;
this.member[i].title= this.data1[i].job.title;
this.member[i].email= this.data1[i].contact.email;
this.member[i].phone= this.data1[i].contact.phone;
this.member[i].street= this.data1[i].address.street;
this.member[i].city= this.data1[i].address.city;
this.member[i].zipCode= this.data1[i].address.zipCode;
this.member[i].country= this.data1[i].address.country;
}
console.log(this.member)
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question