如何在产品页面上获取产品图像URL

  • 本文关键字:获取 图像 URL bigcartel
  • 更新时间 :
  • 英文 :


我正在为我的大卡特尔商店构建一个自定义主题。试图实现一个共享按钮,我想将第一个图像的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文档中找到

相关内容

  • 没有找到相关文章

最新更新