Estou tendo um problema ao tentar usar o Angular *ngFor
e *ngIf
no mesmo elemento.
Ao tentar fazer um loop pela coleção no *ngFor
, a coleção é vista como null
e, consequentemente, falha ao tentar acessar suas propriedades no modelo.
@Component({
selector: 'shell',
template: `
<h3>Shell</h3><button (click)="toggle()">Toggle!</button>
<div *ngIf="show" *ngFor="let thing of stuff">
{{log(thing)}}
<span>{{thing.name}}</span>
</div>
`
})
export class ShellComponent implements OnInit {
public stuff:any[] = [];
public show:boolean = false;
constructor() {}
ngOnInit() {
this.stuff = [
{ name: 'abc', id: 1 },
{ name: 'huo', id: 2 },
{ name: 'bar', id: 3 },
{ name: 'foo', id: 4 },
{ name: 'thing', id: 5 },
{ name: 'other', id: 6 },
]
}
toggle() {
this.show = !this.show;
}
log(thing) {
console.log(thing);
}
}
Eu sei que a solução mais fácil é *ngIf
subir de nível, mas para cenários como repetir itens de lista em um ul
, eu terminaria com um vazio li
se a coleção estiver vazia ou com meus li
elementos de contêiner redundantes.
Exemplo neste plnkr .
Observe o erro do console:
EXCEPTION: TypeError: Cannot read property 'name' of null in [{{thing.name}} in ShellComponent@5:12]
Estou fazendo algo errado ou isso é um bug?