我有一个单页应用,用户可以在其中浏览项目列表。反过来,每个项目都有一个项目列表。
使用通过AJAX请求检索的服务器中的新项更新可观察数组。一切正常。
不幸的是,在几页之后,执行的操作数量(以及FireFox和IE8等浏览器中使用的内存量)不断增加。我已经跟踪了这个事实,即我的可观察数组中的元素没有被正确清理并且实际上仍然在内存中,即使我用新数据替换了我的可观察数组中的项目。
我创建了一个small example来复制我看到的问题:
HTML:
<p data-bind="text: timesComputed"></p>
<button data-bind="click: more">MORE</button>
<ul data-bind="template: { name: 'items-template', foreach: items }">
</ul>
<script id="items-template">
<li>
<p data-bind="text: text"></p>
<ul data-bind="template: { name: 'subitems-template', foreach: subItems }"></ul>
</li>
</script>
<script id="subitems-template">
<li>
<p data-bind="text: text"></p>
</li>
</script>
JavaScript / KnockoutJS ViewModels:
var subItemIndex = 0;
$("#clear").on("click", function () {
$("#log").empty();
});
function log(msg) {
$("#log").text(function (_, current) {
return current + "\n" + msg;
});
}
function Item(num, root) {
var idx = 0;
this.text = ko.observable("Item " + num);
this.subItems = ko.observableArray([]);
this.addSubItem = function () {
this.subItems.push(new SubItem(++subItemIndex, root));
}.bind(this);
this.addSubItem();
this.addSubItem();
this.addSubItem();
}
function SubItem(num, root) {
this.text = ko.observable("SubItem " + num);
this.computed = ko.computed(function () {
log("computing for " + this.text());
return root.text();
}, this);
this.computed.subscribe(function () {
root.timesComputed(root.timesComputed() + 1);
}, this);
}
function Root() {
var i = 0;
this.items = ko.observableArray([]);
this.addItem = function () {
this.items.push(new Item(++i, this));
}.bind(this);
this.text = ko.observable("More clicked: ");
this.timesComputed = ko.observable(0);
this.more = function () {
this.items.removeAll();
this.addItem();
this.addItem();
this.addItem();
this.timesComputed(0);
this.text("More clicked " + i);
}.bind(this);
this.more();
}
var vm = new Root();
ko.applyBindings(vm);
If you look at the fiddle,您会注意到“日志”包含每个创建的每个ViewModel的条目。即使在我预期每个项目早已消失之后,计算属性SubItem.computed
也会运行。这导致我的应用程序性能严重下降。
所以我的问题是:
ko.computed
使用SubItem
导致问题吗? 更新:经过深入挖掘后,我非常确定SubItem
中的计算属性是罪魁祸首。但是,我仍然不明白为什么仍在评估该属性。更新可观察数组时,不应该销毁SubItem
吗?
答案 0 :(得分:8)
一旦所有对它及其依赖项的引用都被删除,JavaScript垃圾收集器就只能处理一个计算的observable。那是因为observables保留了对依赖于它们的任何计算的observable的引用(反之亦然)。
一种解决方案是使计算的observable在不再具有任何依赖性时自行配置。这可以使用像这样的辅助函数轻松完成。
function autoDisposeComputed(readFunc) {
var computed = ko.computed({
read: readFunc,
deferEvaluation: true,
disposeWhen: function() {
return !computed.getSubscriptionsCount();
}
});
return computed;
}