각도 -ui- 트리 라이브러리를 사용하여 폴더 구조를 표시하고 있습니다.angular-ui-tree, DATABASE의 데이터에서 트리 채우기
노드 객체를 MongoDB 데이터베이스에 저장합니다.
은 각 노드 객체는 모양이
{
"node_name" : "Folder 1",
"node_path" : "AAABBB",
"node_id" : 103,
"node_parent_path" : "AAA",
"node_parent_id" : 13,
"template" : "Template 1"
}
각-UI-TREE가, 나무는
Folder 1
|
---> Folder 1-1
|
---> Folder 1-1-1
|
---> Folder 1-2
Folder 2
같이 보일 것이 데이터로이 방법
data = [ {
"node_name" : "Folder 1",
"node_path" : "AAABBB",
"node_id" : 103,
"node_parent_path" : "AAA",
"node_parent_id" : 13,
"nodes" : [
{
"node_name" : "Folder 1-1",
"node_path" : "AAABBBAAA",
"node_id" : 10351,
"node_parent_path" : "AAABBB",
"node_parent_id" : 103,
"nodes" : [
{
"node_name" : "Folder 1-1-1",
"node_path" : "AAABBBAAAAAA",
"node_id" : 415,
"node_parent_path" : "AAABBBAAA",
"node_parent_id" : 10351,
"nodes" : []
}
]
},
{
"node_name" : "Folder 1-2",
"node_path" : "AAABBBBBB",
"node_id" : 103531,
"node_parent_path" : "AAABBB",
"node_parent_id" : 103,
"nodes" : [
]
},
]
},
{
"node_name" : "Folder 2",
"node_path" : "AAACCC",
"node_id" : 104,
"node_parent_path" : "AAA",
"node_parent_id" : 13,
"nodes" : []
}
]
에 채워집니다
위와 같이 좋아하는 스키마를 사용하여 mongoDB에 저장된 노드의 무리에서 t UI 배열을 채울 수있는 DATA 배열 ..
어떻게해야할까요?
또는 트리에 채울 정보를 더 쉽게 검색 할 수 있도록 데이터베이스에 이러한 노드를 저장하는 더 좋은 방법이 있습니까?
ui-tree가 가장 좋습니다. 지금까지 해 온 일은 무엇입니까? –