微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

AngularJS ngTable在很多数据上都很慢

我有一个包含大量数据的数据,并尝试在AngularJS的表格中显示这些数据(带过滤和排序).为此我尝试使用ng-Table,但是当数据太多(> 1000行)时,它在远程服务器上开始减速,当数据太多(> 5000行)时,带有此表的页面甚至无法加载在localhost机器上.据我所知,过滤和排序需要从数据库加载所有数据,可能是任何人都知道一些技巧而不加载所有数据.或者可能是任何人都知道Angular的另一个插件.

谢谢你的帮助.

解决方法

您需要的信息是: http://tech.small-improvements.com/2013/09/10/angularjs-performance-with-large-lists/

建议是:

  1. Paginate the rows,they can’t see all 2000 rows at one time anyway
  2. Render the list without data binding
  3. Do not use a inline method call for calculating the data
  4. Use two lists (one for the view to display,one as data source)
  5. Use ng-if instead of ng-show for additional templates
  6. Do not use AngularJS directives ng-mouseenter,ng-mouseleave,etc.
  7. Tuning hint for filtering: Hide elements with ng-show that are excluded
  8. Tuning hint for filtering: Debounce input

您的过滤和排序可能是问题,在控制器中应用过滤器并在那里对它们进行排序.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐