这个错误可能是由于传入ngFor指令的数组或Observable发出了null值所导致的。要解决这个问题,我们可以在模板中添加安全导航运算符(?)来避免访问null值。
示例代码: 在ngFor指令中添加安全导航运算符:
在Observable中过滤null值:
items$: Observable
ngOnInit() { this.items$ = this.itemService.getItems().pipe( filter(items => items !== null) ); }