Antd treeSelect tree selector treeData is invalid to use simpleMode?

antd treeSelect tree selector treeData
uses a form similar to treeData: [{"id": 1, "pId": 0, "title": "Enterprise identity", "value": "1", "key": 1}] this form
also sets treeDataSimpleMode to true, in the TreeSelect tag but does not display?!

is there a problem here? Can you post an example?

Dec.06,2021

const simpleTreeData = [

]
{ id: 1, pId: '', value: '1', title: "test1" },
{ id: 2, pId: 1, value: '2', title: "test2" },
{ id: 3, pId: 1, value: '3', title: "test3" },
{ id: 4, pId: 1, value: '4', title: "test4" },

]

const tProps = {

treeData: simpleTreeData,
value: this.state.value,
onChange: this.onChange,
treeCheckable: true,
showCheckedStrategy: SHOW_PARENT,
searchPlaceholder: 'Please select',
style: {
    width: 300,
},
treeDataSimpleMode: simpleTreeData

};

Menu