好的,在阅读了几个小时的部分内容并摸不着头脑后,我想到了这个:
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,但是,嘿,什么不需要 :-)