tree-model-js 如何获取先前的节点 ID
tree-model-js how to get previous node id
我想从树中知道之前访问过的节点。
尝试下面的例子
var TreeModel = require('tree-model');
tree = new TreeModel();
rootMain = tree.parse({
id: 1,
children: [
{
id: "11",
children: [{id: "111"}]
},
{
id: "12",
children: [{id: "121"}, {id: "122"}]
},
{
id: "13"
}
]
});
如果假设我遍历到节点 121 和 122 我想要父节点那么它应该 return 我是 12
如果假设我遍历到节点 111 我想要父节点那么它应该 return me the 11
如果假设我遍历到节点 13 我想要父节点那么它应该 return me the 1
在遍历树时,您可以使用 node.parent
.
获取当前节点的父节点
rootMain.walk(node => {
console.log('node id:', node.model.id);
if(node.parent) {
console.log('parent node id:', node.parent.model.id);
}
});
这会记录所需的父 ID
var parent_id;
rootMain.walk(function (node) {
var current_id = node.model.id;
if (node.model.id === 121)
console.log(parent_id);
return true;
parent_id = current_id;
});
我想从树中知道之前访问过的节点。 尝试下面的例子
var TreeModel = require('tree-model');
tree = new TreeModel();
rootMain = tree.parse({
id: 1,
children: [
{
id: "11",
children: [{id: "111"}]
},
{
id: "12",
children: [{id: "121"}, {id: "122"}]
},
{
id: "13"
}
]
});
如果假设我遍历到节点 121 和 122 我想要父节点那么它应该 return 我是 12 如果假设我遍历到节点 111 我想要父节点那么它应该 return me the 11 如果假设我遍历到节点 13 我想要父节点那么它应该 return me the 1
在遍历树时,您可以使用 node.parent
.
rootMain.walk(node => {
console.log('node id:', node.model.id);
if(node.parent) {
console.log('parent node id:', node.parent.model.id);
}
});
这会记录所需的父 ID
var parent_id;
rootMain.walk(function (node) {
var current_id = node.model.id;
if (node.model.id === 121)
console.log(parent_id);
return true;
parent_id = current_id;
});