我使用python(django)和extjs4.2,但现在我不知道如何返回extjs treepanel的json格式数据,如下所示:
[{
"text":"A",
"id": 1,
"leaf":false,
"parentId":0,
"root":4,
"children": [{
"text":"A_1",
"id":2,
"leaf":false,
"parentId":1,
"root":3,
"children": [{
"id":7,
"leaf":true,
"parentId":2,
"root":3,
"text":"A_1_1",
"children":[]
}]
}]
}]
请帮助我,谢谢。