Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 jsTree 的 json_data 插件。
当我打电话时:
$("#my_tree").jstree('get_json');
该函数仅返回当前选定节点的 JSON 数据。
如果没有选择任何内容,那么我可以获得整个数据,这没关系,但是如果选择了叶子,我只会得到与叶子对应的 JSON 部分。
始终获取整个 jstree 的 JSON 的方法是什么?
PS:我不想手动取消选择当前选择的节点。那将是一个肮脏的把戏。
就像我尝试过的评论中建议的那样:
$("#my_tree").jstree('get_json', -1);
这很好用。