$('#TreeView').jstree({
"core": {
'data': {
'url': "/TeamCenter/GetIntroTree/",
'data': function (node) {
return { 'root': node.id };
}
},
},
types: {
"default": {
"icon": "fa fa-folder tree-item-icon-color icon-lg"
},
"file": {
"icon": "fa fa-file tree-item-icon-color icon-lg"
}
},
plugins: [
'types',
'contextmenu',
'wholerow',
'sort',
'dnd'
]
});
后台的数据是
这个我的js 代码,但是后台获取的数据在前台绑定不上去,哪位大神可以帮我看下,万分感谢!