admin管理员组文章数量:1242790
I have a view model which contains a ko.observable representing the conent of a div, like so:
function claimContainerViewModel(elem, api) {
this.content = ko.observable('<somecontent>');
}
At some later time, I update that content using an AJAX call, and I have a div with the following binding:
<div id="ClaimContainer" data-bind="html: content">
The HTML returned for 'content' has data-bind's of it's own, and this is the issue: None of those bindings are being parsed. According to Knockout, and every source I've read, this is supposed to happen. When using the 'html' binding, KO is supposed to be smart enough to do a re-bind.
Is this a bug in KO 2.2.0 (the version I am stuck with right this very second), or am I misinterpreting how the html binding handler works? And before anyone asks, no applyBindings will not work in this case, because the container uses an html bind, which applyBindings assumes is supposed to handle the re-bind itself (I've confirmed this by stepping down in to KO's code).
I have a view model which contains a ko.observable representing the conent of a div, like so:
function claimContainerViewModel(elem, api) {
this.content = ko.observable('<somecontent>');
}
At some later time, I update that content using an AJAX call, and I have a div with the following binding:
<div id="ClaimContainer" data-bind="html: content">
The HTML returned for 'content' has data-bind's of it's own, and this is the issue: None of those bindings are being parsed. According to Knockout, and every source I've read, this is supposed to happen. When using the 'html' binding, KO is supposed to be smart enough to do a re-bind.
Is this a bug in KO 2.2.0 (the version I am stuck with right this very second), or am I misinterpreting how the html binding handler works? And before anyone asks, no applyBindings will not work in this case, because the container uses an html bind, which applyBindings assumes is supposed to handle the re-bind itself (I've confirmed this by stepping down in to KO's code).
Share Improve this question asked Jul 19, 2013 at 22:50 Matt HolmesMatt Holmes 1,0651 gold badge8 silver badges23 bronze badges1 Answer
Reset to default 19UPDATE:
This is the final version of my custom binding. This now works automatically, doesn't doubly bind, and works just like the 'html' binding, but more dynamic.
if (!ko.bindingHandlers['dynhtml']) {
ko.bindingHandlers['dynhtml'] = {
'init': function() {
return { 'controlsDescendantBindings': true };
},
'update': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
ko.utils.setHtml(element, valueAccessor());
ko.applyBindingsToDescendants(bindingContext, element);
}
};
}
Please, please, PLEASE be aware that this can be unsafe if you don't know the source of your HTML. Very, very unsafe. If unsanitized user input can ever make it in to your HTML, this could be a huge security hole, so watch out for cross site scripting attacks.
本文标签: javascriptKnockoutJS Using 39html39 bindingnew elements not bindingStack Overflow
版权声明:本文标题:javascript - KnockoutJS: Using 'html' binding, new elements not binding - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740100714a2224449.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论