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

Not able to see folder name in jstree. Only icon is shown

 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' 文件夹可见,但名称不可见。

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

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