将数组中的元素添加到 jsTree

发布于 2024-12-26 23:31:08 字数 449 浏览 2 评论 0原文

我有像“xyz”或“abc”这样的元素名称,并以 1/2/4/5/6/7/10 作为其路径或父关系。

整个事情都在一个数组中。

我想生成一个关于提供父级到子级引用的路径的 jsTree。

喜欢, 如果

  • abc - 1/2
  • bvg - 1/2
  • xyz - 1
  • yui - 1

树应该是这样的:-

  • xyz
    • abc
    • bvg
  • yui

我正在使用 http://www.jstree.com/ [开放给其他人建议]。

使用带有 jQ​​uery 的基本 php 页面。

I have element names like "xyz" or "abc" with 1/2/4/5/6/7/10 as its path or the parent relationship.

The entire thing is in an array.

I want to generate a jsTree with respect to the path which provides the parent to the child reference.

like,
if

  • abc - 1/2
  • bvg - 1/2
  • xyz - 1
  • yui - 1

The tree should be like:-

  • xyz
    • abc
    • bvg
  • yui

I am using http://www.jstree.com/ [open to other suggestions].

Using a basic php page with jQuery.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

誰認得朕 2025-01-02 23:31:08

数组是否可能反映树的结构,而不是在数组中保存路径。

而不是:

array (
     'abc' => '1/2',
     'bvg' => '1/2',
     'xyz' => '1',
     'yui' => '1'
)

你有:

array (
     0 => array('xyz' => array ('abc', 'bvg')),
     1 => 'yui'
)

Is it possible that instead of saving the path in the array the array reflects the structure of the tree.

Instead of:

array (
     'abc' => '1/2',
     'bvg' => '1/2',
     'xyz' => '1',
     'yui' => '1'
)

you have:

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