我在我的 ionic angular 应用程序中使用功能跟踪,在构建应用程序时,它给了我错误: 类型'(索引:任何,项目:任何)=>任何'缺少类型'any []'中的以下属性: pop、push、concat、join 等等 25 种。
我将此功能用作:
html:
<div *ngFor="let group of groups; index as i; trackBy: trackByFn | groupFilter: searchGroup">
零件:
trackByFn(index, item) {
return item.key;
}
知道我在做什么错吗?感谢帮助。