我是靠谱客的博主 淡淡人生,最近开发中收集的这篇文章主要介绍jquery中EasyUI实现同步树,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在JS中,将显示树的url地址写成control的地址即可.

control:

复制代码 代码如下:

 @RequestMapping(value = "/tree")
 public void tree(HttpServletRequest request, HttpServletResponse response) throws IOException {
  this.writeJson(response, bookService.getTree());
 }

dao:

复制代码 代码如下:

 /**
  * 获取树
  */
 @Override
 public List<Tree> getTree(){
  try {
   List<Tree> trees = new ArrayList<Tree>();
   List<TBookType> 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<TBookType> 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);
  }
 }

以上就是使用EasyUI实现同步树的全部核心代码了,希望大家能够喜欢。

最后

以上就是淡淡人生为你收集整理的jquery中EasyUI实现同步树的全部内容,希望文章能够帮你解决jquery中EasyUI实现同步树所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(104)

评论列表共有 0 条评论

立即
投稿
返回
顶部