我有一个代码可以渲染一个带有一些迭代的小胡子模板,如:
{{#items}}
some html code....
{{/items}}
但我想在迭代中放置渲染项目的数量,如:
{{#items}}
This is the item [COUNTER-VAR]
{{/items}}
有一些方法可以执行此操作.. ??
答案 0 :(得分:14)
不再需要把手。您可以使用当前小胡子中的高阶部分。这些基本上允许您使用该部分的内容作为参数调用函数。如果该部分在迭代内,则将为迭代中的每个项调用它。
鉴于此模板(为了方便和清晰起见,保存在脚本标签中)
<script type="text/html" id="itemview">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tbody>
{{#items}}
<tr>
<td>{{#count}}unused{{/count}}</td>
<td>{{.}}</td
</tr>
{{/items}}
</tbody>
</table>
</script>
...以及以下代码,您可以构建编号列表。
function buildPage(root)
{
var counter = 0;
var data = {
'items': [ 'England', 'Germany', 'France' ],
'count' : function () {
return function (text, render) {
// note that counter is in the enclosing scope
return counter++;
}
}
};
// fetch the template from the above script tag
var template = document.getElementById('itemview').innerHTML;
document.getElementById("results").innerHTML = Mustache.to_html(template, data);
}
输出: 0英格兰 1德国 2法国
答案 1 :(得分:6)
在迭代中使用{{@index}}。
{{#data}}
<p>Index is {{@index}}</p>
{{/data}}
答案 2 :(得分:0)
你可以使用胡子的把手扩展名并编写一个帮助函数来碰撞计数器。
我在这里提出了更多解释。 In Mustache, How to get the index of the current Section
答案 3 :(得分:0)
或者只是在您的数组中添加一个计数器...我知道这是一个丑陋的解决方案,但是它是最易读的并且可以完成工作。
const myData = ["Alpha", "Bravo", "Charlie", "Delta", "Echo"];
tags.myArr = [];
for (let i = 0; i < myData.length; i++) {
tags.myArr.push({index: i, data: myData[i]});
}
return Mustache.render(template, tags);
{{#myArr}}
Number {{index}}: {{data}}
{{/myArr}}