gpt4 book ai didi

angular - 具有 30 000 行的 mat-table 的性能

转载 作者:行者123 更新时间:2023-12-03 14:01:24 25 4
gpt4 key购买 nike

我使用 Angular 6、Firebase 和 Angular Material。

我有 30,000 个 json 对象存储在 firebase 中,我想将它们加载到 mat-table 中。只有我得到的远低于我希望的。我等了 30 秒才可以点击我的应用程序,有时 chrome 会出错......

但是我在分页后加载我的数据。

有人可以告诉我这是否正常,或者是否有解决此问题的策略?谢谢你。

也许我可以用 angular 7 和无限滚动来做到这一点?你有一个例子请求吗?

export class TableComponent implements OnInit {

showSpinner = true;

Data = {nom: '', finessgeo: '', cat1: '', commune: '', CP: '', departement: '', tel: ''}

displayedColumns = ['nom', 'finessgeo', 'cat1', 'commune', 'CP', 'departement', 'tel'];

dataSource = new MatTableDataSource();

applyFilter(filterValue: string) {
filterValue = filterValue.trim();
filterValue = filterValue.toLowerCase();
this.dataSource.filter = filterValue;
}

@ViewChild(MatPaginator) paginator: MatPaginator;

@ViewChild(MatSort) sort: MatSort;

ngAfterViewInit() {
this.dataSource.paginator = this.paginator;
this.dataSource.sort = this.sort;
return this.geoService.getGeos().subscribe(res => {
this.dataSource.data =
res;
this.showSpinner = false;
});
}

constructor(public authService: AuthService, private geoService:
GeoService, private router: Router, private database: AngularFireDatabase) {
}

ngOnInit() {}
}

最佳答案

我有一些建议。

第一:不要将所有 30k 行加载到客户端。尝试使用服务器端分页。这应该可以解决所有问题。
此外,您必须在 api 上实现所有过滤器和排序功能。使用客户端只是为了显示该数据。

如果这不是一个选项:

  • 对服务器上的数据进行排序。尽早。如果可以,直接在您的数据库中查询。
  • 检查您的组件是否将所有行添加到 DOM 中。这将花费非常多的 CPU 时间。
  • 使用 chrome 开发工具中的性能选项卡,检查什么需要这么长时间。并尝试优化它。
  • 检查您的 html 模板。尽量使行尽可能简单。像更少的嵌套元素、额外的类等等。
  • 关于angular - 具有 30 000 行的 mat-table 的性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55824147/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com