我有一个类似的数组:
[
[
['name of the product', unique id],
[nb, nb],
[nb, nb],
[nb, nb]
],
[
['name of the product', unique id],
[nb, nb],
[nb, nb],
[nb, nb]
],
[
['name of the product', unique id],
[nb, nb],
[nb, nb],
[nb, nb]
],
[
['name of the product', unique id],
[nb, nb],
[nb, nb],
[nb, nb]
]
]

我想用胡子迭代它。我的目标是创建一个表格,其中包含产品名称和三个标准的星星。
我尝试使用普通语言访问{{thename [0]}无效。
我知道使用数组对象或对象数组会更容易,但更改数据会很难。
编辑:我试过这个。它几乎可以工作,但向我展示了产品名称的第一个字符'和'唯一ID'虽然我只想要产品的名称' (和整个世界)。
{{#product}}
{{#0}}
{{#0}}
<p>{{.}}</p>
{{/0}}
{{/0}}
{{/product}}
&#13;