我试图在单击父节点(类别)时获取子节点(在我的情况下为子类别)。但我可以看到在我的情况下没有发生 ajax 请求。我已经使用了这个网站上的解决方案 - ( http://www.miketyka.com/2012/10/lazy-loading-with-jstree-and-ajax/ )。这是我下面的jstree代码-
/**
* menu tree generation
*/
$("#menu_tree")
.bind("open_node.jstree", function (e, data) { // this binding will collapse all nodes whenever user expands any single node
data.rslt.obj.siblings().filter(".jstree-open").each(function () {
data.inst.close_node(this);
});
})
.jstree({
"json_data": {
"ajax": {
"url": base_url + "draw/get_child"
}
},
"types": { // this will let user to expand or collapse node by clicking on the node title
"types": {
"default": {
"select_node": function (e) {
this.toggle_node(e);
return false;
}
}
}
},
"core": {
"html_titles": true,
"load_open": true
},
"plugins": ["themes", "json_data", "html_data", "types", "ui"],
"themes": {
"theme": "apple",
"dots": true,
"icons": true
}
});
html部分如下 -
<div class="" id="menu_tree" style="width: 500px;z-index: 1; float: right;position: relative;">
<ul class="" style="position: absolute;top: 0px;left: 0px;">
<?php
if (!empty($parent_categories)) {
foreach ($parent_categories as $parent_categories) {
?>
<li id="cat<?php echo $parent_categories->objcat_id; ?>">
<a href="#" class=""><?php echo $parent_categories->category_name; ?></a>
</li>
<?php
}
}
?>
</ul>
</div>
我试图获取的数据如下 - (我正在使用codeigniter)
$this->load->model('object_category_model');
$result = array();
$sub_category = $this->object_category_model->get_subcategories_by_category_id($this->input->post('parent_id'));
echo json_encode($sub_category);
我只是第一次加载父节点,所有子节点都应该通过用户单击父节点来加载。
如果我使用“html_data”而不是“json_data”,那么会发生一个请求,我可以看到一个加载 gif,但是我得到这个错误“Uncaught Error: NotFoundError: DOM Exception 8”,但是如果我使用“json_data”那么什么都不会发生,萤火虫中没有ajax请求。
我不明白我在做什么错...有什么解决办法吗?