作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让jsTree与子节点的按需加载一起使用。我的代码是这样的:
jQuery('#introspection_tree')。jstree({
“json_data”:{
“ajax”:{
网址:“http:// localhost / introspection / introspection / product”
}
},
“plugins”:[“主题”,“json_data”,“ui”]
});
调用返回的json是
[
{
“data”:“套件1”,
“attr”:{
“id”:“1”
},
“ child ”:[
[
{
“数据”:“硬件”,
“attr”:{
“id”:“2”
},
“ child ”:[
]
}
],
[
{
“数据”:“软件”,
“attr”:{
“id”:“3”
},
“ child ”:[
]
}
]
]
}
.....
]
每个元素可以有很多 child ,树会很大。当前,这将立即加载整个树,这可能需要一些时间。当用户打开子节点时,我该怎么做以实现按需加载?
提前致谢。
最佳答案
Irishka向我指出了正确的方向,但并不能完全解决我的问题。我在弄弄她的答案,然后想到了这个。仅为了清楚起见,使用了两个不同的服务器功能。第一个列出了顶层的所有产品,第二个列出了给定productid的所有子级:
jQuery("#introspection_tree").jstree({
"plugins" : ["themes", "json_data", "ui"],
"json_data" : {
"ajax" : {
"type": 'GET',
"url": function (node) {
var nodeId = "";
var url = ""
if (node == -1)
{
url = "http://localhost/introspection/introspection/product/";
}
else
{
nodeId = node.attr('id');
url = "http://localhost/introspection/introspection/children/" + nodeId;
}
return url;
},
"success": function (new_data) {
return new_data;
}
}
}
});
关于ajax - jsTree-按需通过ajax加载子节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8078534/
我是一名优秀的程序员,十分优秀!