如何在 Stencil Handlebars 中定义回调

How do I define callback in Stencil Handlebars

Some 是一个块助手,它 returns 如果回调 returns 对于给定数组中的某个值为真,则块。

{{#some array isString}}
  Render me if the array has a string.
{{else}}
  Render me if it doesn't.
{{/some}}
//=> 'Render me if the array has a string.'

如何在模板主题中定义回调

在 Stencil 主题中,回调函数需要是 Stencil 中存在的辅助函数,而不是您定义的函数。我们将更新文档以注意回调必须是 pre-existing 助手。