1
jsonを使用してjsonをjsonの下に表示したいとします。しかし、私はjstreeを使ってこれをどうやって行うのか分かりません。次のJSONをJSTreeで使用できるJSONに変換するには
のjQuery:
$("#jstree1").jstree({
'core': {
'data': {
"url": ajaxUrl,
"dataType": "json", // needed only if you do not supply JSON headers
}
}
});
JSON:
{
"parent": {
"item": ["cs", "ls"]
},
"cs": {
"item": ["cs_1"]
},
"ls": {
"item": ["ls_1"]
},
"cs_1": {
"item": ["cs_1_1"]
},
"cs_1_1": {
"item": ["cs_1_1_1", "cs_1_1_2"]
}
}
問題を解決しましたか? –