var root = new Tree.AsyncTreeNode({
//expanded: false,
text: 'AAA',
draggable:false,
id:'source'
,"allowDrag":false,//false表示不能被拖动
children: getJson()
});
红字部分,原来我写成了children: [getJson()]
我以为[]是ext的格式写法,结果我在[]里面写了一个数组,就变成了二维数组,致使树结构无法显示,这问题折磨了我1天了。
刚才才反应过来,[]不是参数格式,而是数组!!!!!把这个[]去掉,就一切都好了~~~~
原文链接:https://www.f2er.com/json/290815.html