求助!JsTree无法加载数据
页面引入:jquery.min.js jstree.min.js
js代码:
$('#tree')
.jstree({
'core' : {
'data' : {
'url' : baseUrl + "/xx/findById?id=0",
'data' : function (node) {
return { 'id' : node.id };
}
},
'check_callback' : true,
'themes' : {
'responsive' : false
}
},
'force_text' : true,
'plugins' : ['state','dnd','contextmenu','wholerow']
});
ajax返回的json数据:
[{"id":1,"name":2},{"id":1,"name":2}]
现在是'data' : function (node) { 里这个note为空,求解