循环 – 每个在ember和handlebar中都有索引和模数

前端之家收集整理的这篇文章主要介绍了循环 – 每个在ember和handlebar中都有索引和模数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一张幻灯片 – 所以每个div都有3张图像
<div>
  <img />
  <img />
  <img />
</div>

</div>
  <img />
  <img />
  <img />
</div>

互联网上的代码都没有完美无缺 –

https://github.com/johanpoirier/resthub-backbone-stack/commit/8a318477d56c370d2a0af4da6eae9999c7bb29da

http://jaketrent.com/post/every-nth-item-in-handlebars-loop/

http://rockycode.com/blog/handlebars-loop-index/

http://www.arlocarreon.com/blog/javascript/handlebars-js-everyother-helper/

是的,包括堆栈溢出中的答案.

任何人都可以提供一些在当前时期(Ember / Handlebar版本)完美运行的代码吗?

我有一系列模型,所以我想做类似的事情

{{#each model}}
    {{if index % 3 == 0}}
    {{/if}}
{{/each}}

解决方法

我发现索引或@index在模板中不起作用,但您可以从帮助程序中访问它.

我在这里做了一个例子来证明这一点:

http://jsbin.com/egoyay/1/edit

编辑:添加要回答的代码,演示{{else}}阻止

把手帮手(非Ember使用):

Handlebars.registerHelper('ifIsNthItem',function(options) {
  var index = options.data.index + 1,nth = options.hash.nth;

  if (index % nth === 0) 
    return options.fn(this);
  else
    return options.inverse(this);
});

用法

<ol>
 {{#each model}}
   <li>
     {{#ifIsNthItem nth=3}}
        Index is a multiple of 3
     {{else}}
        Index is NOT a multiple of 3
     {{/ifIsNthItem}}
   </li>
 {{/each}}
</ol>
原文链接:https://www.f2er.com/js/159387.html

猜你在找的JavaScript相关文章