怎样在easyUi里面获取到easyui-tree

html :       

         <ul class="easyui-tree" data-options="url:'../module/getTree.do',method:'get',animate:true,dnd:true"></ul>

java 

         getTree(){

JsonObject obj= null;

JsonArray ary = null;

Map<String,Object> map =new HashMap<String , Object>();

map.put("parentId", StringUtils.trimToNull(parentId));

List<Moudle> list=service.selectBYParentid(map);

if (modules != null && modules.size() != 0) {
            if (modules != null && modules.size() != 0) {
            for (Module module : modules) {
                object = JsonUtils.toJSONObject(module);
                getSubModulesRecursively(object, map);
                jsonArray.add(object);
            }
        }

}



private void getSubModulesRecursively(JSONObject module, Map<String, Object> map) {
        module.put("type", "M");
        module.put("text", module.get("name"));
//        map.put("parentId", module.get("id"));
//        module.put("__id__", module.get("id"));
//        module.put("id", UUID.randomUUID().toString());
        JSONObject object = null;
        JSONArray array = new JSONArray();
        map.put("moduleId", module.get("id"));
        List<Function> functions = functionService.selectByModuleId(map);
        if (functions != null && functions.size() != 0) {
            for (Function function : functions) {
                object = JsonUtils.toJSONObject(function);
                object.put("type", "F");
                object.put("text", function.getName());
                object.put("__id__", function.getId());
                object.put("id", UUID.randomUUID().toString());
                array.add(object);
            }
        }
        
        if (array.size() != 0) {
            module.put("children", array);
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值