gpt4 book ai didi

javascript - 带有 knockout 的 Chrome Bug?

转载 作者:搜寻专家 更新时间:2023-11-01 04:23:55 25 4
gpt4 key购买 nike

我开发了一个 TreeView ,它使用 knockout 来显示层次结构。当我折叠树中的一个节点时,我注意到 chrome 中发生了一个奇怪的情况。节点的文本与其下方的项目一起消失。我认为我的代码有问题,然后发现它在 IE 和 Firefox 中都能正常工作。我创建了下面的 fiddle ,它演示了从我的页面中删除任何额外代码的问题。如果您展开一个节点然后折叠它(加号按钮不会像在我的完整代码中那样变成减号),文本就会消失。然后,您只需单击页面上的任意位置即可让文本显示出来。

消失的文字已按照评论中的建议用红色勾勒出来,可以在截图中看到

enter image description here

我已经在 4 台机器上对此进行了测试,但在我使用 Chrome 时它在每台机器上都不起作用。这是 Chrome 中的错误,还是我做错了什么?另外,如果这是 Chrome 中的错误,有人能找到解决此问题的方法吗?

Example Fiddle

console.clear();

var hierarchyNode = function (parent) {
var self = this;
this.name = "Node Name";
this.hasChildren = ko.observable(true);
this.childNodes = ko.observableArray();
this.expanded = ko.observable(false);
};

hierarchyNode.prototype = {
name: null,
hasChildren: null,
childNodes: null,
getChildNodes: function (element, event) {
if (element.hasChildren() === true && element.childNodes().length === 0) {
element.childNodes.push(new hierarchyNode(element));
}

element.expanded(!element.expanded());

}
};

var hierarchyVM = function () {
var self = this;

self.hierarchyNodes = ko.observableArray();
self.selectItem = function () {};
};

var vm = new hierarchyVM();

vm.hierarchyNodes.push(new hierarchyNode(null));

console.log(vm.hierarchyNodes()[0]);
ko.applyBindings(vm);
ul.tree {
list-style-type: none;
padding-left: 10px;
}
.hierarchyNode {border: 1px solid red;}
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul class="tree" data-bind="template: { name: 'itemTmpl', foreach: $data.hierarchyNodes }"></ul>
<script id="itemTmpl" type="text/html">
<li>
<button data-bind="click: getChildNodes">+</button>
<div data-bind="visible: hasChildren() == false" class="tree-spacer"></div>
<span data-bind="text: name" class="no_selection hierarchyNode"></span>
<ul class="tree" data-bind="template: { name: 'itemTmpl', foreach: $data.childNodes }, visible: expanded"></ul>
</li>
</script>

最佳答案

我能够通过更改可见绑定(bind)以在模板上使用 if 参数来修复它。我不知道为什么这会解决它,但你去吧。

<ul data-bind="template: { name: 'itemTmpl', foreach: childNodes, 'if': expanded }"></ul>

fiddle

这似乎是 Chrome 特定的错误,因为名称元素的标记显然没有更改。折叠后只需单击任意位置即可显示。可能是渲染器中的错误?

关于javascript - 带有 knockout 的 Chrome Bug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32871455/

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