jquery中EasyUI實現(xiàn)同步樹
更新時間:2015年03月01日 11:45:28 投稿:hebedich
本文主要是給大家分享了一則使用EasyUI實現(xiàn)同步樹的代碼,主要是使用遞歸實現(xiàn),非常實用的方法,推薦給小伙伴們。
在JS中,將顯示樹的url地址寫成control的地址即可.
control:
復(fù)制代碼 代碼如下:
@RequestMapping(value = "/tree")
public void tree(HttpServletRequest request, HttpServletResponse response) throws IOException {
this.writeJson(response, bookService.getTree());
}
dao:
復(fù)制代碼 代碼如下:
/**
* 獲取樹
*/
@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("獲取數(shù)據(jù)出錯!", e);
}
}
以上就是使用EasyUI實現(xiàn)同步樹的全部核心代碼了,希望大家能夠喜歡。
您可能感興趣的文章:
相關(guān)文章
jQuery EasyUI API 中文文檔 - NumberSpinner數(shù)值微調(diào)器使用介紹
jQuery EasyUI API 中文文檔 - NumberSpinner數(shù)值微調(diào)器使用,需要的朋友可以參考下。2011-10-10JQuery中使用.each()遍歷元素學(xué)習(xí)筆記
這篇文章主要介紹了jquery中使用.each()遍歷元素學(xué)習(xí)筆記,本文從實際項目經(jīng)驗總結(jié)而來,需要的朋友可以參考下2014-11-11jQuery取得設(shè)置清空select選擇的文本與值
這篇文章主要介紹了jQuery如何取得設(shè)置清空select選擇的文本與值,下面有個不錯的示例,需要的朋友可以參考下2014-07-07