У меня есть компонент, который получает массив image
объектов в виде Input
данных.
export class ImageGalleryComponent {
@Input() images: Image[];
selectedImage: Image;
}
Я бы хотел, чтобы при загрузке компонента selectedImage
значение было установлено для первого объекта images
массива. Я пытался сделать это в OnInit
хуке жизненного цикла следующим образом:
export class ImageGalleryComponent implements OnInit {
@Input() images: Image[];
selectedImage: Image;
ngOnInit() {
this.selectedImage = this.images[0];
}
}
это дает мне ошибку, Cannot read property '0' of undefined
что означает, что images
значение не установлено на этом этапе. Я также пробовал OnChanges
ловушку, но я застрял, потому что не могу получить информацию о том, как наблюдать за изменениями массива. Как добиться ожидаемого результата?
Родительский компонент выглядит так:
@Component({
selector: 'profile-detail',
templateUrl: '...',
styleUrls: [...],
directives: [ImageGalleryComponent]
})
export class ProfileDetailComponent implements OnInit {
profile: Profile;
errorMessage: string;
images: Image[];
constructor(private profileService: ProfileService, private routeParams: RouteParams){}
ngOnInit() {
this.getProfile();
}
getProfile() {
let profileId = this.routeParams.get('id');
this.profileService.getProfile(profileId).subscribe(
profile => {
this.profile = profile;
this.images = profile.images;
for (var album of profile.albums) {
this.images = this.images.concat(album.images);
}
}, error => this.errorMessage = <any>error
);
}
}
В шаблоне родительского компонента это
...
<image-gallery [images]="images"></image-gallery>
...
images
данные заполняются в родительском компоненте? Т.е. через HTTP-запрос (-ы)? Если это так, вам может быть лучше иметь ImageGalleryComponent subscribe () к наблюдаемому http.