Knockout 绑定到 jQuery 模板 - HTML 字符串被编码

发布于 2024-12-29 18:02:35 字数 656 浏览 0 评论 0原文

我说的对吗,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罗罗贝儿 2025-01-05 18:02:35

您可能需要使用 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}}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文