gpt4 book ai didi

javascript - meteor 模板: parse html content

转载 作者:行者123 更新时间:2023-12-02 15:12:05 26 4
gpt4 key购买 nike

我在我的收藏中保存了一些 HTML 内容。通过使用 IronRouter data() 将用于设置光标/数组。在此示例中,我仅显示一个示例数组。

现在 HTML 内容无法正确显示,因为它没有被解析。用户将看到 HTML 标签。我需要做什么才能正确显示内容?

IronRouter

Router.route('/article/:_id', {
name: 'article',
data: function () {
var articles = [{ title: 'title', content: '<strong>content</strong>'}];
return { articles: articles };
}
});

模板

<template name="article">
{{#each articles}}
<h1>{{title}}</h1>
<section>{{content}}</section>
{{/each}}
</template>

最佳答案

使用Handlebars triple-stash :

<template name="article">
{{#each articles}}
<h1>{{title}}</h1>
<section>{{{description}}}</section>
{{/each}}
</template>

关于javascript - meteor 模板: parse html content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34748014/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com