- 注册时间
- 2012-5-23
- 最后登录
- 2018-2-27
- 阅读权限
- 200
- 积分
- 7605
- 精华
- 0
- 帖子
- 3021
|
我给你一段伪代码:
public void GetTree(HttpServletRequest request, HttpServletResponse response) throws Exception
{
ArrayList list = new Test.TestDB().getTree(); //返回一个ArrayList结构的列表数据
String json = PluSoft.Utils.JSON.Encode(list );
response.getWriter().write(json);
}
这样就能返回JSON数据结构:- [
- {id: "base", text: "Base", expanded: false},
- {id: "ajax", text: "Ajax", pid: "base"},
- {id: "json", text: "JSON", pid: "base"},
- ......
- ]
复制代码 最后,在创建outlooktree的时候,你指定下idField/parentField就可以了。
|
|