我有传回该JSON在服务器和我不知道如何通过在车把上的2维数组循环。
"userSurvey":[[1],[2],[3]]
我知道使用{{#each userSurvey}}
但后来我将如何去做好内部的阵列usersurvey
对象?
我有传回该JSON在服务器和我不知道如何通过在车把上的2维数组循环。
"userSurvey":[[1],[2],[3]]
我知道使用{{#each userSurvey}}
但后来我将如何去做好内部的阵列usersurvey
对象?
你不得不环路2次:
{{#each userSurvey}}
{{#each this}}
{{ this }}
{{/each}}
{{/each}}
在这种特殊情况下,如果你想渲染只是“123”,你可以这样做:
{{#each userSurvey}}
{{this.[0]}}
{{/each}}
或者更简单,因为数组automatiaclly转换为字符串:
{{#each userSurvey}}
{{this}}
{{/each}}
{{#each Arr}}
{{#each this}}
<label>{{this.[0]}}</label> {{this.[1]}}<br>
{{/each}}
{{/each}}
这是我简单的例子,我的阵列的环阵列:)