ajax请求后台得到json数据后动态生成树形下拉框的方法
前端  /  管理员 发布于 4年前   515
如下所示:
<select id="cc" class="easyui-combotree" style="width:580px;" name="rempId" data-options="required:true"></select>
<script>$(function(){$.ajax({url:"departmentAction_getAllDep.action",type:"post",success:function(result){//console.log(result);$("#cc").combotree('loadData',b1(result));}});$("#cc").combotree({animate:true,//选择树节点触发事件 onSelect : function(node) { n = node; //返回树对象 var tree = $(this).tree; //选中的节点是否为叶子节点,如果不是叶子节点,清除选中 var isLeaf = tree('isLeaf', node.target); if (!isLeaf) { //清除选中 $("#cc").combotree('clear'); } } });});var tree = {id:'', text:'', state:'', checked:'', iconCls:'', attributes:'', children:''}function b1(result){var t = [];$.each(result,function(index,dept){t[index] = b2(dept);});return t;}function b2(dept){ var tree = new Object();tree.id = dept.depId; tree.text = dept.depName; tree.state = 'closed'; tree.checked = 'false'; if(dept.employees.length != 0){ tree.children = b3(dept.employees); }else{ tree.children = []; } return tree;}function b3(employees){ var easyTree = []; $.each(employees,function(index,item){ easyTree[index] = b4(item); }); return easyTree; } function b4(item){var tree = new Object();tree.id = item.empId;tree.text = item.empName;if(item.empSex == "男"){tree.iconCls = 'icon-nan';}else{tree.iconCls = 'icon-female';}return tree;} </script>
department表中的dept_id作为employee表中有的外键,生成的Department.java类中有Set<employee>对象。从后台查询部门表,得到List<Department>集合,通过struts2配置:
<action name="departmentAction_*" class="com.chinasoft.action.DepartmentAction" method="{1}"><result name="getAllDep" type="json"><param name="root">list</param></result></action>
转成json格式后,传到jsp页面,在前台页面中处理json数据,动态生成下拉树。
以上这篇ajax请求后台得到json数据后动态生成树形下拉框的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号