ฉันมีปัญหากับการพยายามใช้ Angular's *ngFor
และ*ngIf
ในองค์ประกอบเดียวกัน
เมื่อพยายามวนลูปผ่านคอลเลกชันใน*ngFor
คอลเลกชันถูกมองว่าเป็นnull
และดังนั้นจึงล้มเหลวเมื่อพยายามเข้าถึงคุณสมบัติในเทมเพลต
@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);
}
}
ฉันรู้ว่าวิธีแก้ปัญหาง่าย ๆ คือการเลื่อนระดับ*ngIf
ขึ้น แต่สำหรับสถานการณ์เช่นการวนลูปไอเท็มใน a ul
ฉันจะจบด้วยการว่างli
ถ้าคอลเลกชันว่างเปล่าหรือฉันli
ถูกห่อด้วยองค์ประกอบคอนเทนเนอร์ที่ซ้ำซ้อน
ตัวอย่างที่plnkrนี้
หมายเหตุข้อผิดพลาดคอนโซล:
EXCEPTION: TypeError: Cannot read property 'name' of null in [{{thing.name}} in ShellComponent@5:12]
ฉันกำลังทำอะไรผิดหรือเป็นข้อผิดพลาดหรือไม่?