gpt4 book ai didi

jquery - 在 Kendo 分层数据源中搜索

转载 作者:行者123 更新时间:2023-12-03 22:51:34 24 4
gpt4 key购买 nike

我正在尝试在 Kendo 分层数据源中搜索一个项目。需要获取该项目的 uid 并以编程方式选择 Kendo Treeview 上的该项目节点。

这是代码。原谅我草率的算法。

function findTreeviewNodeById(haystack, needle) {
var uid = null;

for (var i = 0; i < haystack.length; i++) {
if (haystack[i].id == needle) {
uid = haystack[i];
}
else if (haystack[i].hasChildren) {
uid = findTreeviewNodeById(haystack[i].children.data(), needle);
}

if (uid != null)
break;
}

return uid;
}

上面的代码仅适用于具有 2 个深度级别的分层数据源。如果我尝试在它达到第 3 级时为其提供更深层次的分层数据源,则这一行 haystack[i].children.data() 返回空子项(它应该不是空的)。为什么数据源的第 3 级是空的?即使 Treeview 完美地显示了 Hierarchical 数据源中包含的所有数据。我在这里错过了什么吗?

最佳答案

我必须在递归之前调用 load() 到 haystack,以便加载 haystack 的 child 。

function findTreeviewNodeById(haystack, needle) {
var uid = null;

for (var i = 0; i < haystack.length; i++) {
haystack[i].load();
if (haystack[i].id == needle) {
uid = haystack[i];
}
else if (haystack[i].hasChildren) {
uid = findTreeviewNodeById(haystack[i].children.data(), needle);
}

if (uid != null)
break;
}

return uid;
}

关于jquery - 在 Kendo 分层数据源中搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24325261/

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