admin管理员组文章数量:1344937
I've found that in theory ko.cleanNode()
should remove bindings from node if called, but in this example it doesn't seem to work.
Javascript:
// View model
var vm = {
name: ko.observable("John")
}
// Node to be added
var node = $("<div/>",{
id: "testing",
'data-bind' : "text: name()"
});
// First addition to body
$("body").append(node);
// Apply bindings
ko.applyBindings(vm,$("#testing")[0]);
// Remove
ko.cleanNode($("#testing")[0]);
$("#testing").remove();
$("body").append(node);
Result: You can see in jsFiddle , that node still has attached binding (event listener).
I've found that in theory ko.cleanNode()
should remove bindings from node if called, but in this example it doesn't seem to work.
Javascript:
// View model
var vm = {
name: ko.observable("John")
}
// Node to be added
var node = $("<div/>",{
id: "testing",
'data-bind' : "text: name()"
});
// First addition to body
$("body").append(node);
// Apply bindings
ko.applyBindings(vm,$("#testing")[0]);
// Remove
ko.cleanNode($("#testing")[0]);
$("#testing").remove();
$("body").append(node);
Result: You can see in jsFiddle , that node still has attached binding (event listener).
Share Improve this question asked Aug 13, 2013 at 0:41 skmasqskmasq 4,5217 gold badges44 silver badges77 bronze badges 1-
Standard KO bindings don't track event listeners as such.
cleanNode
removes the "internal bindings". See stackoverflow./a/15069509/2246674 - I've found it best to simply play with KO as it wants to be played with. – user2246674 Commented Aug 13, 2013 at 0:50
1 Answer
Reset to default 8Knockout is removing the knockout related bindings from the node, but when it does so, it does not reset the node to empty values. It just stops updating the node automatically from the viewmodel, vm.
http://jsfiddle/BrsmC/2/
Take out line 21 of the updated fiddle.
ko.cleanNode($("#testing")[0]);
You should see when you run it, the name is now 'imnotbinding'.
本文标签: javascriptHow to remove bindings from node in knockoutStack Overflow
版权声明:本文标题:javascript - How to remove bindings from node in knockout? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753193a2533031.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论