我正在使用最新的流星版本,这是本地部署。我有一个包含树结构的集合(文件夹),其中子节点具有父节点 ID 作为属性。我想在 UI 树小部件中显示树。我研究了递归模板主题,但是,我很难让子节点显示出来。这是相关的模板和代码。
<template name="sideTreeTemplate">
<div id="tree" style="height: 200px">
<h2 class="panel">My Data</h2>
<ul id="treeData" style="display: none;">
{{#each treeItems }}
{{> treeNodeTemplate}}
{{/each }}
</ul>
</div>
</template>
<template name="treeNodeTemplate" >
<li id="{{id}}" title="{{name}}" class="{{type}}">
{{name}}
{{#if hasChildren}}
<ul>
{{#each children}}
{{> treeNodeTemplate}}
{{/each}}
</ul>
{{/if}}
</li>
</template>
client.js 代码:
Template.sideTreeTemplate.treeItems = function() {
var items = Folders.find({"parent" : null});
console.log("treeItems length=" + items.count());
items.forEach(function(item){
item.newAtt = "Item";
getChildren(item);
});
return items;
};
var getChildren = function(parent) {
console.log("sidetree.getChildren called");
var items = Folders.find({"parent" : parent._id});
if (items.count() > 0) {
parent.hasChildren = true;
parent.children = items;
console.log(
"children count for folder " + parent.name +
"=" + items.count() + ",
hasChildren=" + parent.hasChildren
);
items.forEach(function(item) {
getChildren(item);
});
}
};
树的顶层显示良好,并且是反应性的,但没有显示任何子节点,即使该getChildren
函数是为具有子节点的节点调用的。我怀疑服务器同步实际上删除了每个节点的动态添加的属性(即hasChildren
,children
)。在这种情况下,我怎样才能使反应树工作?或者我的实施可能有其他问题?
谢谢您的帮助。