Every {{item}}
works well except for="{{item}}"
. It shows:
EXCEPTION: Template parse errors: Can't bind to 'for' since it isn't a known native property
<div *ngFor="#item of collection">
<input type="radio" name="item" id="{{item}}" value="{{item}}">
<label for="{{item}}">
{{item}}
</label>
</div>
How can I make it work? Thanks!