访问产品的图像URL

时间:2017-02-17 12:51:12

标签: bigcommerce

我正在尝试在Edit Theme Files中获取图片网址 - > product.html

我已经有了一些价值观: {{product.title}},这给了我“产品名称” {{product.url}},它为我提供了网址 等...

但无论我尝试什么,我都无法获取网址。

我最接近的是:{{product.main_image.data}} 这给了我这样的东西:

https://cdn3.bigcommerce.com/s-8lxh1/images/stencil/%7B:size%7D/products/882/1700/RAM_VB_193_SW1__09586.1463668242.jpg?c=2

但这不会产生图像链接。

感谢任何帮助或见解。

提前致谢!

1 个答案:

答案 0 :(得分:3)

您返回的字符串不起作用,因为它的尺寸为"""尺寸"占位符嵌入在URL中。您可以使用Stencil的getImage Handlebars帮助程序指定图像尺寸并返回工作URL:

{{getImage product.main_image.data "thumbnail"}}

"缩略图" string指定主题设置中存在的图像大小。您还可以指定数字大小,例如" 200x200"。查看文档here