27

如何在 Meteor 模板中显示标记的字符串数据?

我需要从我的数据库中显示一个包含一些基本 HTML 标记的字符串,以便正确格式化生成的文本。它目前只显示标记文本。

这是模板的相关部分:

<span class="description">{{description}}</span>

其中 {{description}} 是包含标记的字符串(如“hello<br>world”)。

我希望它显示

hello
world

而不是

hello<br>world

我想这类似于在 javascript 中使用 innerHTML。

提前致谢!

4

1 回答 1

63

要覆盖 Handlebars 中的 HTML 转义,请使用三重存储:

<span class="description">{{{description}}}</span>
于 2013-01-10T21:57:13.370 回答