我正试图从另一个模板中调用一个模板,但是我得到了这个奇怪的输出?
<!--label:qK29F4s8LzAJET2td-->
这是我的第一个调用其他模板的模板
<template name="messages_create">
<form id="create_email" class="container-fluid">
<input type="text" id="email_to" placeholder="Enter Recipient" value="{{contact.fullName}} <{{contact.email}}>" class="span12">
<input type="text" id="subject" placeholder="Subject" value="{{record.subject}}" class="span12">
<textarea id="body" placeholder="Body" rows="4" class="span12">{{{template}}}</textarea>
</form>
</template>
这是帮助声明
Template.messages_create.template = function () {
return Template.welcome_email();
}
和第二个模板
<template name="welcome_email">
<p>Good Afternoon {{to}},</p>
<p>{{to}}, Welcome to my site!</p>
</template>
我还尝试直接从另一个模板中调用模板,而不会删除像{{> welcome_email}}
答案 0 :(得分:0)
直接调用模板应该有效,并且不需要帮助程序。我认为把手呼叫对额外的空间很敏感。尝试:
{{>welcome_email}}