Meteor:如何从模板助手返回模板?

时间:2013-03-04 16:31:08

标签: coffeescript meteor

n00b在这里。我正试图将一个任意模板“注入”另一个模板。但似乎我做错了:)

whatever.html:

<template name="parent">
    {{child}}
</template>

<template name="child1">
  I'm child 1
</template>

<template name="child2">
  I'm child 2
</template>

whatever.coffee

x = "child1"
Template.parent.child = -> Template[x](@)

这将创建“带注释的HTML”(http://docs.meteor.com/#template_call)作为结果,但{{child}}助手的输出是html编码的,因此不会被解释。

我知道我可以使用Template.myTemplate.rendered事件使用jQuery将模板直接添加到DOM。但这似乎是一个非常黑客的imho。如果可能的话,我宁愿帮助生成一个帮助器。

这样做的“正确”方法是什么?是否可以在模板中取消结果?反应性会有效吗?

提前致谢!! 1

此致

1 个答案:

答案 0 :(得分:17)

{{doubleBrace}}转义HTML,而{{{tripleBrace}}}不会转义HTML并按原样呈现。

编辑:我提到了其他方式。

From Handlebars docs - “Handlebars HTML-escapes {{expression}}返回的值。如果你不想让Handlebars转义值,请使用'triple-stash'。”