@At
@Ok("json")
public Location treeObject(@Param("id") String id) {
List<Location> locations = locationService.query();
//System.out.println(Json.toJson(locations));
Location root = locationService.zip(locations);
System.out.println(Json.toJson(root));
root = root.getChildren().get(0);
System.out.println(Json.toJson(root));
root = root.getChildren().get(0);
System.out.println(Json.toJson(root));
root = root.getChildren().get(0);
System.out.println(Json.toJson(root));
return root;
}
以下是打印结果
为什么 会有NULL
{
"deptid": "100",
"desription": "65432",
"lng": 1.0,
"lat": 1.0,
"parentId": "0",
"ancestors": "0",
"level": "1",
"orderNum": 0,
"children": [{
"deptid": "100",
"desription": "3211",
"lng": 0.0,
"lat": 0.0,
"parentId": "100000",
"ancestors": "0,100000",
"level": "2",
"orderNum": 0,
"children": null,
"cnName": "天津",
"enName": "33",
"id": "1c519cedda624a4282e4a94a64c06fe6",
"status": "true",
"delFlag": "false",
"createBy": "1",
"createTime": "2019-07-05 18:35:30",
"updateBy": "1",
"updateTime": "2019-07-05 18:35:30"
}],
"cnName": "中国",
"enName": "china",
"id": "100000",
"status": "true",
"delFlag": "false",
"createBy": "1",
"createTime": "2019-06-22 10:31:13",
"updateBy": "1",
"updateTime": "2019-06-22 10:31:50"
}
{
"deptid": "100",
"desription": "3211",
"lng": 0.0,
"lat": 0.0,
"parentId": "100000",
"ancestors": "0,100000",
"level": "2",
"orderNum": 0,
"children": [null],
"cnName": "天津",
"enName": "33",
"id": "1c519cedda624a4282e4a94a64c06fe6",
"status": "true",
"delFlag": "false",
"createBy": "1",
"createTime": "2019-07-05 18:35:30",
"updateBy": "1",
"updateTime": "2019-07-05 18:35:30"
}
{
"deptid": "100",
"desription": "3211",
"lng": 0.0,
"lat": 0.0,
"parentId": "1c519cedda624a4282e4a94a64c06fe6",
"ancestors": "0,100000,1c519cedda624a4282e4a94a64c06fe6",
"level": "3",
"orderNum": 0,
"children": [null],
"cnName": "方言公司",
"enName": "43432",
"id": "88b83333ea6d4ec9b038584ba8dfa270",
"status": "true",
"delFlag": "false",
"createBy": "1",
"createTime": "2019-07-05 18:35:44",
"updateBy": "1",
"updateTime": "2019-07-05 18:35:44"
}
{
"deptid": "100",
"desription": "3211",
"lng": 0.0,
"lat": 0.0,
"parentId": "88b83333ea6d4ec9b038584ba8dfa270",
"ancestors": "0,100000,1c519cedda624a4282e4a94a64c06fe6,88b83333ea6d4ec9b038584ba8dfa270",
"level": "4",
"orderNum": 0,
"cnName": "会议室二",
"enName": "43432",
"id": "7d81a1a70bdd4d669b644106b1c5d14f",
"status": "true",
"delFlag": "false",
"createBy": "1",
"createTime": "2019-07-05 18:35:56",
"updateBy": "1",
"updateTime": "2019-07-05 18:35:56"
}