試用一個ngrx-store示例應用程序。在我的組件中,我有:如何在角度2中顯示觀察值?
<div *ngFor="#todo of todos">
{{ todo.value }}
</div>
但是,輸入後不顯示待辦事項。這是我得到的錯誤:
Can't bind to 'ngFor' since it isn't a known native property ("
********
<div [ERROR ->]*ngFor="let todo of todos">
{{ todo.value }}
</div>
"): [email protected]:11
如何顯示待辦事項? plunkr:http://plnkr.co/edit/yOw4qh4aZ5d9jhg235gD?p=preview
錯誤信息中的代碼與上面列出的代碼不匹配。特別是,你有'ngFor ='#todos of todos'而不是'ngFor =「讓todos todos」':這個錯誤會導致你得到的錯誤信息。你**不需要導入NgFor – drewmoore
另外,你鏈接到的plunkr是空的,爲什麼標題提到Observable?這裏沒有一個可觀察到的東西... – drewmoore