我正在尝试创建一个循环来使用 swig 访问数组对象。
我想创建一个检查对象长度的循环。我可以通过 {{styles[0].style}} 访问对象。其中 [] 是一个数组。所以我需要做的是拥有类似的东西
for (var i; i < styles.length; i++) { styles[i].style };
如果样式对象中有十个数组,我需要炫耀 {{styles[0].style}}, {{styles[1].style}}, ... {{styles[9].style}}
这是我要放置 {{}} 的代码:
<table border="1">
<tbody>
<tr><td><a href={{styles[0].a}}><div style="width: 175px;height: 250px" id="products">
<img id="img" src={{styles[0].img}}></div></a></td></tr><tr><td id="styleno">{{styles[0].style}}
</td></tr>
</tbody>
</table>
我认为需要类似的东西:
{% for x in y %}
{% if loop.first %}<ul>{% endif %}
<li>{{ loop.index }} - {{ loop.key }}: {{ x }}</li>
{% if loop.last %}</ul>{% endif %}
{% endfor %}
有人可以帮忙吗?谢谢!
这是我的 JSON:
{
"styles":[
{"style":"123", "a":"http://", "img":"http://", "price":3},
{"style":"234", "a":"http://", "img":"http://", "price":2}
]
}