iOS:Sencha Touch 应用程序和 iPad
我们一直在开发一个可以在 Sencha Touch 中消耗大量数据(例如具有 4000 多行的表/代理)的应用程序。
当我们在台式计算机上运行该应用程序时,它工作正常,但是当我们在 iPad 上访问该应用程序时,一旦我们遇到数据繁重的任务,Safari 就会消失。
这是苹果施加的限制还是我们因做错事而受到惩罚?
We have been developing an application which can consume a large amount of data (say tables/proxys with 4000 + rows) in Sencha Touch.
When we run the application on our desk top computer it works fine however when the application is accessed on an iPad as soon as we get to the data heavy task safari just vaporizes .
Is this a limitation on imposed by Apple or are we getting punished for doing something wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试根据用户请求加载数据:
http: //podlipensky.com/post/2011/01/03/Sencha-Load-data-on-demand.aspx
http://www.sencha.com/forum/showthread.php ?120083-Ext.ux.touch.LazyDataView
还尝试对从开始时不可见的元素使用延迟渲染。您需要使用 xtype 和 json 配置,而不是创建新的控件实例。
Try to load data as user request it:
http://podlipensky.com/post/2011/01/03/Sencha-Load-data-on-demand.aspx
http://www.sencha.com/forum/showthread.php?120083-Ext.ux.touch.LazyDataView
Also try to use lazy rendering for not-visible-from-start elements. You need to use xtype and json configuration instead of creating new instance of control.