HandleBars-每个循环-一次显示四个



使用HandleBars。

我有8个项目。我想显示4个项目,然后再显示另外4个项目。

1 2 3 4
5 6 7 8

到目前为止我的代码:

{{#each item}}
{{#if @index '<' 4}}
{{@index}}
{{/if}}
{{/each}}

因此,我将我的代码限制为仅显示4,但我正在努力对此进行扩展,并循环浏览其余四项。

我知道这不是一个问题,实际上只是学习HandleBars。

任何建议都是有益的,我们将不胜感激。非常爱所有人。

{{#each item}}
{{#if @index '<' 4}}
{{@index}}
{{else}}                        //add else
{{@index}}     
{{/if}}
{{/each}}

相关内容

  • 没有找到相关文章

最新更新