JSTree、创建节点和 JavaScript 超时
我使用 json 数据创建了一个 JSTree。最初,一切都按预期进行。
但是,当我使用“create”(crrm 插件)的函数动态添加节点时
jQuery("#mpTree").jstree("创建", ParentNodeId, "最后", { "attr" : { “rel”:“资产新”,“id”: “newNodeId”},“数据”:“dataVarHere”} ,function() {} , true);
如果我在 IE 中创建超过 30 个后续节点,在 Mozilla 中创建超过 60 个节点,Javascript 就会超时。 Chrome 可以处理负载而不会超时。
显然,这远非理想。有没有其他方法可以创建一堆节点并将它们添加到树中而无需过度加载?
提前致谢。
I created a JSTree using json data. Initially, everything works as expected.
However, when I add nodes dynamically with a function using "create" (crrm plugin)
jQuery("#mpTree").jstree("create",
parentNodeId, "last", { "attr" : {
"rel" : "assetNew", "id" :
"newNodeId"}, "data": "dataVarHere"}
,function() {} , true);
Javascript times out if I go over 30ish subsequent nodes created in IE, 60ish in Mozilla. Chrome can handle the load without timeout.
Obviously, this is far from ideal. Is there any other way to create a bunch of nodes and add them to tree without excessive loading?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您正在尝试使用“create”来加载整个树。我不认为它是为此目的(或优化)的(我认为它主要是为了向现有树添加一个或两个节点)。
我认为通常的方法是使用数据插件之一(例如JS_DATA)最初加载您的树。
你的数据来自哪里?数据库?如果它还不是 HTML、XML 或 JSON,您可以将其转换为其中之一吗?
It sounds like you're trying to use "create" to load the whole tree. I don't think it's intended (or optimised) for that (I think it's mainly for adding just one or two nodes to an existing tree).
I think the usual way to do it use one of the data plugins (e.g. JS_DATA) to load your tree initially.
Where is your data coming from? A database? If it's not already HTML, XML, or JSON, can you convert it to one of those?