gpt4 book ai didi

javascript - tree-model-js如何获取前一个 Node id

转载 作者:行者123 更新时间:2023-12-03 04:57:55 26 4
gpt4 key购买 nike

我想知道树中先前访问过的 Node 。尝试下面的例子

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"
}
]
});

如果假设我遍历到 Node 121 和 122 我想要父 Node 那么它应该返回我 12如果假设我遍历到 Node 111 我想要父 Node 那么它应该返回我 11如果假设我遍历到 Node 13 我想要父 Node 那么它应该返回我 1

最佳答案

在遍历树时,您可以使用node.parent获取当前 Node 的父 Node 。

rootMain.walk(node => {
console.log('node id:', node.model.id);

if(node.parent) {
console.log('parent node id:', node.parent.model.id);
}
});

关于javascript - tree-model-js如何获取前一个 Node id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42360841/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com