我想做这样的事情:
{{object.1.name}}
{{#each object}} display name for 2, 3 4,.... and so on {{/each}}
我读过这篇文章说我可以用数字来引用:How do I access an access array item by index in handlebars?
在编程语言中我可能会做类似的事情或者只是有一个条件if(我的知识不能通过把手获得):
for(i=1; i<theEnd; i++){ display object.i}
如果我想使用以下所有内容。
我的问题是我不知道有多少物品,但也需要特别处理。
有什么想法吗?
我错过了一个简单的解决方案吗?
答案 0 :(得分:2)
我找到了解决方案。 Jesse的解决方案可行,但意味着当数据被操纵时,它需要被拉入和拉出阵列(低效和麻烦)。
相反,我们可以用索引做点什么。
以下是一个例子:
$h = new Handlebars\Handlebars;
echo $h->render(
'{{#each data}}
{{@index}} {{#unless @last}}Not last one!{{/unless}}{{#if @last}}Last entry!{{/if}}
{{/each}}',
array(
'data' => ['a', 'b', 'c']
)
);
echo "\n";
echo $h->render(
'{{#each data}}
{{@index}} {{#if @first}}The first!{{/if}}{{#unless @first}}Not first!{{/unless}}
{{/each}}',
array(
'data' => ['a', 'b', 'c']
)
);
echo "\n";
echo $h->render(
'{{#each data}}
{{@index}} {{#unless @index}}The first!{{/unless}}{{#if @index}}Not first!{{/if}}
{{/each}}',
array(
'data' => ['a', 'b', 'c']
)
);
the output (master) will be:
0 Not last one!
1 Not last one!
2 Last entry!
0 The first!
1 Not first!
2 Not first!
0 The first!
1 Not first!
2 Not first!
which is what you're looking for, right? even the example in wycats/handlebars.js#483, works:
$h = new Handlebars\Handlebars;
echo $h->render(
'
{{#each data}}
{{@index}}
{{#if @last }}
Last entry!
{{/if}}
{{/each}}',
array(
'data' => ['a', 'b', 'c']
)
);
the output:
0
1
2
Last entry!
只需执行#each然后检查是否@first然后将其作为循环中的特殊情况进行操作。
我在这里找到了我的例子:https://github.com/XaminProject/handlebars.php/issues/52