任何人都可以告诉我什么是
<!--bindings={
"ng-reflect-ng-for-of": "[object Object],[object Object"
}--> ?
以及如何从html组件的* ngFor循环中将其删除?
* ngFor:
<tr class="result-table-data-tr" *ngFor="let active of actives" >
</tr>
ts是:
export class ActivesComponent implements OnInit, AfterViewInit {
private actives: any = [];
constructor() { }
ngOnInit() {
this.actives = actives.data; // this is json
}
ngAfterViewInit(): void {
actsTableDrop();
}
}