将数组中的元素添加到 jsTree
我有像“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/ [开放给其他人建议]。
使用带有 jQuery 的基本 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数组是否可能反映树的结构,而不是在数组中保存路径。
而不是:
你有:
Is it possible that instead of saving the path in the array the array reflects the structure of the tree.
Instead of:
you have: