我正在为我的大卡特尔商店构建一个自定义主题。试图实现一个共享按钮,我想将第一个图像的URL插入到共享控件中。如何仅访问第一个图像?非常感谢。
在"产品"页面上,或者每当您有product
变量可用时,您可以使用检索第一个图像
{{ product.image | product_image_url }}
此处也有记录:
https://developers.bigcartel.com/api/themes#product
product.image Returns the default image of a product.
product.images Returns all of the images of a product.
product.image_count Returns the number of images a product has
想明白了。
您可能想要启动一个带有限制指定值的for循环(见下文(
{% for image in product.images limit:1 %}
First image URL: {{ image.url }}
{% endfor %}
显然,您可以通过这种方式循环遍历任何可用的数组。
在BigCartel文档中找到