4

我有性能问题,我找不到解决方案。

上下文:我需要在一个表中显示大量数据(500 行,8 列)。为了显示这些数据,我选择使用 Smart-table,因为它提供了很好的功能,但问题是我有很多数据并且显示数据的时间很长(5 - 9 秒,这取决于设备性能)。

重要的事情:我需要显示所有数据,所以我不想要分页方法,限制过滤器。

所以这段代码有效:

    <ion-scroll class="scrollVertical" direction="xy" overflow-scroll="true" >
            <table st-table="tableaux" class="table table-striped">
                    <thead>
                        <tr>
                            <th ng-repeat="column in ColumnTable">{{column.Label}}</th>
                        </tr>
                        <tr>
                            <th ng-repeat="column in ColumnTable">
                                <input st-search="{{column.Id}}" placeholder="" class="input-sm form-control" type="search" ng-model="inputRempli"/>
                            </th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr ng-repeat="row in tableaux">
                            <td ng-repeat="column in ColumnTable" ng-init="colonne = column.Id">{{row[colonne]}}</td>
                        </tr>
                    </tbody>
                </table>
  </ion-scroll>

我读到 Ionic 做了一个指令 ( collection-repeat ),它允许应用程序以比 ng-repeat 更高效的方式显示大量项目列表。所以我试图用 collection-repeat 重新制作我的解决方案,但这不起作用......

代码收集-重复解决方案:

<ion-scroll class="scrollVertical">
        <table st-table="tableaux" class="table table-striped">
            <thead>
                <tr>
                    <th ng-repeat="column in ColumnTable">{{column.Label}}</th>
                </tr>
                <tr>
                    <th ng-repeat="column in ColumnTable">
                        <input st-search="{{column.Id}}" placeholder="" class="input-sm form-control" type="search" ng-model="inputRempli"/>
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr collection-repeat="row in tableaux"  item-width="200px" item-height="100px">
                    <td collection-repeat="column in ColumnTable" ng-init="colonne = column.Id" item-width="100px" item-height="100px">{{row[colonne]}}</td>
                </tr>
            </tbody>
        </table>
    </ion-scroll>

错误:超出最大调用堆栈大小

问题:是否有任何 angularjs 或 ionic 解决方案来提高具有大量数据的智能表的性能?我的收藏重复有什么问题?

4

2 回答 2

0

你用的是什么版本的离子?如果您使用的是 1.0 beta 14 或更高版本,请使用一次绑定(Angular 1.3 原生)

它会像这样。

<ion-scroll class="scrollVertical" direction="xy" overflow-scroll="true" >
        <table st-table="tableaux" class="table table-striped">
                <thead>
                    <tr>
                        <th ng-repeat="column in ::ColumnTable">{{::column.Label}}</th>
                    </tr>
                    <tr>
                        <th ng-repeat="column in ::ColumnTable">
                            <input st-search="{{::column.Id}}" placeholder="" class="input-sm form-control" type="search" ng-model="inputRempli"/>
                        </th>
                    </tr>
                </thead>
                <tbody>
                    <tr ng-repeat="row in ::tableaux">
                        <td ng-repeat="column in ::ColumnTable" ng-init="colonne = column.Id">{{::row[colonne]}}</td>
                    </tr>
                </tbody>
            </table>
</ion-scroll>
于 2015-05-28T09:45:10.070 回答
0

你是如何加载数据的?

如果您正在执行$scope.ColumnTable.push(newData);此操作,那么这不是正确的方法。

我要做的是:

  • 创建一个加载临时表的服务:我们称之为它 myService.setTable()

  • 通知你的控制器一个事件:这个服务发送一个事件$rootScope.$broadCast("myService.setTable-refresh")

  • 将事件捕获到您的控制器和更新表中:$scope.$on('myService.setTable-refresh,function(){ $scope.myWorkingTable =myService.getTable();});

  • 更新您的 HTML 以使用myWorkingTable

此外,您应在您ng-repeat的性能优化中定义一个唯一键,track by以防止重建已创建的内容。

请参阅此处的说明:http ://www.bennadel.com/blog/2556-using-track-by-with-ngrepeat-in-angularjs-1-2.htm

于 2015-06-01T18:27:40.213 回答