Skip to content

Instantly share code, notes, and snippets.

@coolicer
Created June 16, 2015 04:37
Show Gist options
  • Save coolicer/073bd830ea45895ee467 to your computer and use it in GitHub Desktop.
Save coolicer/073bd830ea45895ee467 to your computer and use it in GitHub Desktop.
var datasource = [{
"text": "null",//根节点
"expanded": true,
"items": [
{
"text":"user1",//第一个子菜单
"expanded": true,
"items":[
{
"text":"user2",//二级菜单
"expanded": true,
"items":[
{
"text":"user4",//三级
"items":[
{
"text":"user5"//四级
}
]
}
]
},
{
"text":"user3",
}
]
},
]
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment