如何使用ajax加载jstree子节点?

时间:2014-11-03 12:03:13

标签: tree nodes jstree

我现在需要关于jstree。我在我的一个项目中使用它。我需要有关使用ajax加载子节点的帮助。

1 个答案:

答案 0 :(得分:0)

$('#treeloaddiv').jstree({
        'core' : {
          'data' : {
            "url" : "/jstreedemo/JSTreeDemoServlet",
            "type":"post",
            "dataType" : "json",
            "data" : function (node) {

                    return { "id" : node.id };
            }
          }
        }
      });

这是在我的情况下需要创建一个json对象的servlet中的jstree v3的代码 将childrens属性设置为true,然后使用ajax加载每个子项。 json格式如下

JSONObject jsonobj = new JSONObject();
jsonobj.put("text","Root node");
jsonobj.put("children",true);

希望这有助于我在这一点上坚持了很多天。