找网上搜了一圈,没有找到解决方法,所以写出来供大家参考,有更好的方法请不吝指教。
代码如下:
var contacttree = $('#contact-org').jstree({
"core" : {
"animation" : false,
"multiple" : false,
"check_callback" : true,
"themes" : {
"icons" : true,
"dots" : false
},
"data" : {
"dataType": 'json',
"url":function(node){
return node.id==="#" ?
ctxPath + "/v-contact?queryOrg":ctxPath + "/v-contact?queryOrg";
},
"data":function(node){
return {"id" : node.id};
}