admin管理员组文章数量:1343856
If I am using the Index helper Is it possible to make the count start at 1 rather than 0. Both:
{@idx}{.}{/idx}
and
{$idx}
are zero based.
Does anyone know a way to do this?
It would be perfect if you could just do:
{$idx + 1}
but obviously that won't work.
If I am using the Index helper Is it possible to make the count start at 1 rather than 0. Both:
{@idx}{.}{/idx}
and
{$idx}
are zero based.
Does anyone know a way to do this?
It would be perfect if you could just do:
{$idx + 1}
but obviously that won't work.
Share Improve this question asked Feb 8, 2013 at 20:56 busyPixelsbusyPixels 3751 gold badge6 silver badges18 bronze badges 1- I am not answering you're question, but I assume this is for display. Have you thought about using CSS counters? css-tricks./numbering-in-style – fulmicoton Commented Feb 8, 2013 at 21:01
3 Answers
Reset to default 10I guess you can use math helper in bination with $idx:
{@math key=$idx method="add" operand="1"/}
To make a use of @math in dust templates you need to add dust helpers which is by default excluded from dust core package.
The specific syntax that you need in order to "load" the dust helpers in node is:
var dust = require('dustjs-linkedin');
dust.helper = require('dustjs-helpers');
Incase you cannot add these helpers, which would be really strange decision, still you can create your own function in current code base like this which can be used instead of @gt or @math
var baseContext = dust.makeBase({
position: function(chunk, context) {
return context.stack.index + 1;
},
});
Now you can use {position} instead of ${idx} which will count the loop from 1 to n.
Put the math helper inside {@idx}
<table>
{#names}
<tr><td>{@idx}{@math key="{$idx}" method="add" operand="1"/}{/idx}</td>
<td>{name}</td>
</tr>
{/names}
</table>
本文标签: javascriptIn dustjs can the inital value of idx not be zero basedStack Overflow
版权声明:本文标题:javascript - In dust.js can the inital value of $idx not be zero based? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743717088a2526926.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论