0
所以我有一個組件,它看起來是這樣的:呼叫功能的組件的輸入
export class TAComponent implements OnInit {
@Input() postInfo : TracklistPost;
youtubeUrlOriginal : string;
ngOnInit() : void {
this.youtubeUrlOriginal = this.postInfo.getYoutubeUrl();
}
}
和類:
export class TracklistPost {
play_urls : PlayUrl[];
public getYoutubeUrl() : string {
return this.play_urls[1].value;
}
}
當我打電話從TAComponent的getYoutubeUrl()函數,我得到這個函數沒有定義的錯誤。在Angular2中如何做到這一點?
好的謝謝,編輯爲我想它看起來像但它現在工作。我想我太習慣於編寫Java ... 只是一個小問題,我應該在「導出類CommService」之前添加@Injectable(),還是不需要? – CounterFlame