Не получается обновить поля объекта, отображаются поля старого объекта.
Что я делаю не так?
export class EmployeeComponent implements OnInit {
@Input() employee: Employee;
indexess: index[] = [];
constructor(private service: EmployeeService) {
}
ngOnInit() {
this.loadData();
}
loadData() {
this.service.getIndex().subscribe(
data => this.indexes = data,
error => console.log(error)
);
for (let ind of this.indexes) {
if (ind.index === this.employee.index)
{
this.employee.index = index.address;
}
}
|