Knockout 绑定到 jQuery 模板 - HTML 字符串被编码
我说的对吗,Knockout 在绑定到 jQuery 模板时对 HTML 值进行编码。
我该如何阻止这个?在下面的示例中,${Description} 包含我不想编码的 HTML 标记。
<script id="QuoteHeaderTemplate" type="text/x-jQuery-tmpl">
<div class="heading group">
<div id="${Name}" class="title row group">
<div class="inner">
<a class="benefit-title" href="#">${Name}</a>
</div>
</div>
<div class="description group">
<div class="inner">
${Description}
</div>
</div>
</div>
</script>
<div data-bind='template: {name: "QuoteHeaderTemplate", foreach: benefits}'>
</div>
Am I right in saying that Knockout encodes HTML values when binding to a jQuery template.
How do I stop this? In the example below the ${Description} contains HTML tags that I do not want encoded.
<script id="QuoteHeaderTemplate" type="text/x-jQuery-tmpl">
<div class="heading group">
<div id="${Name}" class="title row group">
<div class="inner">
<a class="benefit-title" href="#">${Name}</a>
</div>
</div>
<div class="description group">
<div class="inner">
${Description}
</div>
</div>
</div>
</script>
<div data-bind='template: {name: "QuoteHeaderTemplate", foreach: benefits}'>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要使用 jQuery 模板插件提供的
{{html}}
标签。文档在这里: http://api.jquery.com/template-tag-html/你会这样做:
{{html Description}}
You would want to use the
{{html}}
tag provided by the jQuery Templates plugin. Docs are here: http://api.jquery.com/template-tag-html/You would do:
{{html Description}}