JsTree速度问题
我有一个页面包含 8 个 jstree,其中 3 个非常大。
明显的问题是页面加载需要 13 秒,这很糟糕。 通过分析我知道这都是 jstree 处理时间。
有人对减少页面加载时间有什么想法吗?
我正在考虑部分加载元素,但这会降低用户体验。
谢谢,亚历克斯
I have a page that contains 8 jstree's, 3 of which are very large.
The obvious problem is that the page take 13 seconds to load, which is crap.
Through profiling I know this is all jstree processing time.
Does anyone have any ideas on reducing page load times ?
I was thinking partial loading of elements but this will be a downer on user experience.
Thanks, Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是选项卡式页面,为什么不在选择特定选项卡时加载树呢?
除此之外,下一个最佳方法是部分加载或在服务器负载上构建多个 json 字符串并将它们存储在客户端数组中 - 然后构建树而不进行额外的服务器调用。
If it's a tabbed page, why not just load the trees when the specific tab is selected?
Other than that, the next best way is partial loading or building multiple json string on server load and storing them in an array client side - then build the trees without making additional server calls.