0

我正在浏览一个帖子列表,并根据内容类型(图像、文本、推特帖子)选择正确的 html 车把模板。但是,随着越来越多的模板类型,这变得相当难看:

<template name="postItem">

{{#if isType "image"}}
    {{#if isSinglePost}}
        {{>postImageSingle}}
    {{else}}
        {{>postImage}}
    {{/if}}
{{/if}}
{{#if isType "rich"}}
    {{#if isSinglePost}}
        {{>postRichSingle}}
    {{else}}
        {{>postRich}}
    {{/if}}
{{/if}}
{{#if isType "video"}}
    {{#if isSinglePost}}
        {{>postRichSingle}}
    {{else}}
        {{>postRich}}
    {{/if}}
{{/if}}
{{#if isType "file"}}
    {{#if isMimeType "audio/wav"}}
        {{>postAudio}}
    {{else}}
        {{>postFile}}
    {{/if}}
{{/if}}
{{#if isType "link"}}
    {{#if isProviderName this "Twitter"}}
        {{>postTwitter}}
    {{else}}
        {{#if isSinglePost }}
            {{>postLinkSingle}}
        {{else}}
            {{>postLink}}
        {{/if}}
    {{/if}}
{{/if}}

{{#if isType "preview"}}
    {{>postPreview}}
{{/if}}

{{#if isType "photo"}}
    {{>postImage}}
{{/if}}

</template>

将逻辑移动到辅助函数中会更好,但我苦苦挣扎的是如何从辅助函数返回要使用的模板名称。

{{>getTemplateName}}

Template.postItem.getTemplateName = function () {
    return postImage;
};

但这当然给了我:

Exception from Deps recompute: Error: No such template 'getTemplateName'
4

1 回答 1

1

{{> template}}语法仅用于插入模板,而用于您使用的助手{{helper}},没有尖括号>。从您的助手调用中删除括号,并在助手中呈现所需的子模板:

Template.postItem.getTemplateName = function() {
    return new Handlebars.safeString(Template.postImage());

};
于 2013-10-06T11:36:31.993 回答