尝试在构造函数或ngOnInit中获取组件的@Input值。但它一直是“未定义”。
原文链接:https://www.f2er.com/angularjs/144430.html我用console.log更新了英雄plunker来显示问题(beta角)。
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) } }
我在这里做错了什么?