我有以下json:
[
{
"Name":"Billy in the Lowground",
"Key":"A",
"chords":[
[
"G",
"",
"D",
""
],
[
"C",
"",
"G",
""
],
[
"C",
"",
"G",
""
],
[
"A",
"",
"D",
""
],
[
"G",
"",
"D",
""
],
[
"C",
"",
"G",
""
],
[
"C",
"",
"G",
""
],
[
"D",
"",
"G",
""
],
"Em",
"",
"",
"B7",
"Em",
"",
[
"C",
"",
"G",
""
],
[
"D",
"",
"G",
""
]
]
}
];
在和弦下,我将每个小节映射到和弦数组中的一个点,然后每个小节都是另一个数组,对应于小节中的节拍数。在本例中为 4 拍。
所以我在弄清楚如何迭代嵌套数组时遇到了问题,但是当我写这个问题时,我想我找到了答案,但这是访问和迭代嵌套数组的最佳方式:
<script id="chord-tpl" type="text/x-jsrender">
{{for chords}}
<tr>
{{for #parent.data[#index]}}
<td>{{:#parent.data[#index]}}</td>
{{/for}}
</tr>
{{/for}}
</script>
另外我想知道是否有一种方法可以查看您在数组上迭代了多少次并根据 # 次做某事,
例如
for( i=0; i == chords.length; $i++ ) {
if( i % 4 ) {
// start new table row
}
else {
// echo out table cell
}
}