2012-11-28 105 views
2

我使用mustache.js,想我的模板來顯示文本六次,一次在data.result.options每個值上一節[0]如何重複基於嵌套數組

JS

data = {result : {"id": "AAA", "options" : [[1, 2, 3, 4, 5, 6], 2, 3]}} 

模板

{{#result.options[0]}} 
<span>Show me six times.</span> 
{{/result.options[0]}} 

當我嘗試這雖然,沒有什麼渲染。有沒有可能在不改變數據結構的情況下做到這一點?

的jsfiddle這裏:http://jsfiddle.net/TbuP5/1/

回答

0

我打得周圍,這工作:

模板

{{#result.options.0}} 
<span>Show me six times.</span> 
{{/result.options.0}}