Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在准备一家小商店,并希望通过仅显示上传的第二张图片来移动产品页面(这与缩略图不同)我希望在产品上显示次要图片。
类似的东西{{ product.image[1] }},但它不起作用。有人能帮我吗?
{{ product.image[1] }}
这应该可以解决问题:
<img src="{{ product.images[1] | product_image_url }}" />