最佳答案
我有一个组件,它接收作为 Input
数据的 image
对象数组。
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>
...