无法绑定到'article',因为它不是'reddit'Angular2的已知属性

时间:2017-08-26 17:18:47

标签: angular typescript

在控制台中出错:无法绑定到“文章”,因为它不是'reddit'的已知属性

Reddit.component.ts enter image description here

app.component.html enter image description here

甚至尝试将相同的代码放在reddit.component.html

enter image description here

但结果是一样的。 对不起,我对angular2很新。学习阶段

帮帮我!!!

1 个答案:

答案 0 :(得分:1)

ngFor

中删除 app.component.html

它将是,

<reddit [article]="article"></article>

因此您将文章传递给子组件reddit,因此您需要在reddit组件上定义输入。

@Input() article: Article[];