我在尝试使用 Angular*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
的,或者我的 s 被包装在冗余容器元素中。
这个plnkr的例子。
注意控制台错误:
EXCEPTION: TypeError: Cannot read property 'name' of null in [{{thing.name}} in ShellComponent@5:12]
我做错了什么还是这是一个错误?