JSTree、创建节点和 JavaScript 超时

发布于 2024-10-19 06:13:21 字数 425 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾挽 2024-10-26 06:13:21

听起来您正在尝试使用“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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文