2

Handlebars.js 具有部分,您可以使用<script>模板片段和对registerPartial. 我觉得这很麻烦,我更喜欢 Jinja 定义宏的风格,你可以用相同的模板语言来做。

有没有帮手可以让我做这样的事情:

{{#macro macro-name}}
  This is {{ bar }} and this is {{ foo }}
{{/macro}}

{{macro-name bar="BAR"}} {{! foo would be searched in the outer context}}

我没有运气搜索过。

4

2 回答 2

8

好的,在阅读了几个小时的部分内容并摸不着头脑后,我想到了这个:

Handlebars.registerHelper('macro', function (name, defaults) {
    // The following helper will be registered with the name
    // given as the first parameter of the macro helper.
    // Upon invocation, variables will be looked up in the
    // following order: invocation arguments, default values
    // given in the macro definition (stored in defaults.hash),
    // and finally in the invocation context.
    Handlebars.registerHelper(name, function (options) {
        // options.hash has the parameters passed to
        // the defined helper in invocation, who
        // override the default parameters and the current context.
        var e = $.extend(this, defaults.hash, options.hash);

        // and here's where all the magic happens:
        return new Handlebars.SafeString(defaults.fn(e));
    });
});

你可以像这样定义一个宏:

{{#macro "macro-name" param1="bar" param2="" param3="egg"}}
  {{ param1 }}
  {{#each param2 }}
    {{ param3 }}
    {{ some_value }} {{! this one is looked up in the current context }}
  {{/each}}
{{/macro}}

并像这样调用它:

{{macro-name param1="foo" param2=some_array_in_context}}

定义的第一个参数是宏名。所有其他参数必须采用 param=value 格式。

我已经用了几个小时了。我发现了一些错误,但修复了它们,我发现它很有用。令我惊讶的是最终代码的结果是如此之少。真正神奇的部分是您可以使用帮助器而不是返回字符串,而是定义一个新的帮助器。

它需要 jQuery,但是,嘿,什么不需要 :-)

于 2013-07-30T05:38:24.840 回答
1

目前实现这一点的方法是使用inline partials。您可以通过编程方式或在模板中使用内联部分定义这些:

{{#*inline "myPartial"}}
  {{param1}}
{{/inline}}

{{> myPartial param1="foo" }}
于 2018-10-03T01:48:47.527 回答