尝试@Input
在constructor
或中获取组件的值ngOnInit
。但是它一直undefined
都在来。
我用 console.log
用来以显示此问题(β角)。
http://plnkr.co/edit/dseNM7OTFi1VNG2Z4Oj5?p=preview
export class HeroDetailComponent implements OnInit {
constructor(){
console.log('hero', this.hero)
}
public hero: Hero;
ngOnInit() {
console.log('hero', this.hero)
}
}
我在这里做错了什么?