參考示例: 列表數據生成Tree
創建Tree
<ul id="tree1" class="mini-tree" url="../data/listTree.txt" style="width:200px;padding:5px;"
showTreeIcon="true" textField="text" idField="id" parentField="pid" resultAsTree="false"
>
</ul>
註意:idField、parentField、resultAsTree屬性。
數據結構:列表
通過url返回的數據結構如下:
[
{id: "base", text: "Base", expanded: false},
{id: "ajax", text: "Ajax", pid: "base"},
{id: "json", text: "JSON", pid: "base"},
……
]
其中,id和pid對應父子關系。