无法在jstree中查看文件夹名称。仅显示图标

时间:2017-01-04 07:48:58

标签: javascript html jstree

 function abc() {
     var legend = [{
       "test": "adbc.tiff"
     }, {
       "test": "CD.tiff"
     }, {
       "test": "sec_color"
     }];

     $("#local_tree").jstree({

       'core': {
         'data': [{
           "text": "Tiff Files",
           "children": legend
         }]
       },
       "checkbox": {
         "keep_selected_style": false
       },
       "plugins": ["checkbox"]
     });
}

我不知道为什么我只能看到一个图标,而不是像'adbc.tiff'那样的文件名。 “CD.tiff 3”文件夹可见,但名称不可用。

1 个答案:

答案 0 :(得分:2)

定义要显示的字符串的属性是text,而不是test

// use text: "...", not test: "..."
var legend = [{
   "text": "adbc.tiff"
 }, {
   "text": "CD.tiff"
 }, {
   "text": "sec_color"
 }];