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가 http Observable에 subscribe ()하는 것이 더 나을 수 있습니다.