jquery中EasyUI实现同步树_jquery
程序员文章站
2022-05-12 23:06:47
...
在JS中,将显示树的url地址写成control的地址即可.
@RequestMapping(value = "/tree")
public void tree(HttpServletRequest request, HttpServletResponse response) throws IOException {
this.writeJson(response, bookService.getTree());
}
/**
* 获取树
*/
@Override
public List getTree(){
try {
List trees = new ArrayList();
List root = this.search(0);
if(root != null && root.size() > 0){
for(TBookType tb : root){
Tree rootnode = this.getNode(tb);
rootnode.setState("open");
trees.add(rootnode);
}
}
return trees;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 递归
*/
private Tree getNode(TBookType node){
if(node == null){
return null;
}
try {
Tree treenode = new Tree();
treenode.setId(String.valueOf(node.getId()));
treenode.setText(node.getName());
treenode.setPid(String.valueOf(node.getPid()));
List children = this.search(node.getId());
if(children != null && children.size() > 0){
treenode.setState("closed");
for(TBookType child : children){
Tree childnode = this.getNode(child);
if(childnode != null){
treenode.getChildren().add(childnode);//递归
}
}
}
return treenode;
} catch (Exception e) {
throw new BusinessException("获取数据出错!", e);
}
}
control:
复制代码 代码如下:
@RequestMapping(value = "/tree")
public void tree(HttpServletRequest request, HttpServletResponse response) throws IOException {
this.writeJson(response, bookService.getTree());
}
dao:
复制代码 代码如下:
/**
* 获取树
*/
@Override
public List
try {
List
List
if(root != null && root.size() > 0){
for(TBookType tb : root){
Tree rootnode = this.getNode(tb);
rootnode.setState("open");
trees.add(rootnode);
}
}
return trees;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* 递归
*/
private Tree getNode(TBookType node){
if(node == null){
return null;
}
try {
Tree treenode = new Tree();
treenode.setId(String.valueOf(node.getId()));
treenode.setText(node.getName());
treenode.setPid(String.valueOf(node.getPid()));
List
if(children != null && children.size() > 0){
treenode.setState("closed");
for(TBookType child : children){
Tree childnode = this.getNode(child);
if(childnode != null){
treenode.getChildren().add(childnode);//递归
}
}
}
return treenode;
} catch (Exception e) {
throw new BusinessException("获取数据出错!", e);
}
}
以上就是使用EasyUI实现同步树的全部核心代码了,希望大家能够喜欢。
推荐阅读
-
Python实现类似jQuery使用中的链式调用的示例
-
jQuery插件zTree实现的基本树与节点获取操作示例
-
jQuery插件zTree实现删除树子节点的方法示例
-
asp.net中利用Jquery+Ajax+Json实现无刷新分页
-
BootStrap中jQuery插件Carousel实现轮播广告效果
-
jQuery中验证表单提交方式及序列化表单内容的实现
-
jQuery中hover方法搭配css的hover选择器,实现选中元素突出显示方法
-
在浏览器中实现图片粘贴的jQuery插件-- pasteimg使用指南
-
js与jQuery实现获取table中的数据并拼成json字符串操作示例
-
jquery开发中瀑布流效果实现方法