什么是Ztree?
zTree 是一个依靠 jQuery 实现的多功能 “树插件”,需要先导入jquery才能导入zTree。
有什么用?
- 树状菜单
- 树状数据显示
- 权限管理
怎么用
引入Ztree到项目中
将数据包引入页面
<link rel="stylesheet" type="text/css" href="${path}/plugins/ztree/css/zTreeStyle/zTreeStyle.css">
<script type="text/javascript" src="${path}/plugins/ztree/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="${path}/plugins/ztree/js/jquery.ztree.all-3.5.min.js"></script>
定义树显示区域
<SCRIPT type="text/javascript">
var setting = {
check: {
enable: true
},
data: {
simpleData: {
enable: true
}
}
};
var zNodes =[
{ id:1, pId:0, name:"Sass管理", open:true},
{ id:11, pId:1, name:"企业管理", open:true,checked:true},
{ id:111, pId:1, name:"模块管理"}
];
$(document).ready(function(){
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
//参1 显示的标签
//参2 设置的参数 比如支持复选 check enable = true
//参3 数据
});
</SCRIPT>
后台数据打包成json传给菜单
public class TestZtreeJsonData {
@Test
public void test01() throws JsonProcessingException {
List<Map<String,Object>> list=new ArrayList<>();
Map<String,Object> node1=new HashMap<String,Object>();
node1.put("id",1);
node1.put("pId",0);
node1.put("name","Sass管理");
node1.put("open",true);
Map<String,Object> node2=new HashMap<String,Object>();
node2.put("id",11);
node2.put("pId",1);
node2.put("name","企业管理");
node2.put("open",true);
node2.put("checked",true);
Map<String,Object> node3=new HashMap<String,Object>();
node3.put("id",111);
node3.put("pId",1);
node3.put("name","模块管理");
//因为三个元素放在[]中,所以本质上放到集合中的
list.add(node1);
list.add(node2);
list.add(node3);
String json = new ObjectMapper().writeValueAsString(list);
System.out.println(json);
}
}
前端控制器
@Controller
@RequestMapping("/test")
public class TestZtreeDataController extends BaseController {
@RequestMapping(path="/getZtreeData",method ={ RequestMethod.GET, RequestMethod.POST})
public @ResponseBody
Object getZtreeData(){
List<Map<String,Object>> list=new ArrayList<>();
Map<String,Object> node1=new HashMap<String,Object>();
node1.put("id",1);
node1.put("pId",0);
node1.put("name","Sass管理");
node1.put("open",true);
Map<String,Object> node2=new HashMap<String,Object>();
node2.put("id",11);
node2.put("pId",1);
node2.put("name","企业管理");
node2.put("open",true);
node2.put("checked",true);
Map<String,Object> node3=new HashMap<String,Object>();
node3.put("id",111);
node3.put("pId",1);
node3.put("name","模块管理");
//因为三个元素放在[]中,所以本质上放到集合中的
list.add(node1);
list.add(node2);
list.add(node3);
return list; //list虽然是对象,但会被 @ResponseBody转成json
}
}