Angular *ngFor
ve *ngIf
aynı öğeyi kullanmaya çalışırken sorun yaşıyorum .
İçindeki koleksiyonda döngü oluşturmaya çalıştığınızda *ngFor
, koleksiyon, null
şablondaki özelliklerine erişmeye çalışılırken görünür ve sonuç olarak başarısız olur.
@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);
}
}
Ben kolay bir çözüm *ngIf
bir seviye yukarı taşımak olduğunu biliyorum ama bir liste öğeleri üzerinde döngü gibi senaryolar için ul
, ben li
koleksiyon boşsa, boş veya benim li
s yedek konteyner elemanları sarılmış.
Bu plnkr'de örnek .
Konsol hatasını not edin:
EXCEPTION: TypeError: Cannot read property 'name' of null in [{{thing.name}} in ShellComponent@5:12]
Yanlış bir şey mi yapıyorum yoksa bu bir hata mı?