我正在尝试在Edit Theme Files中获取图片网址 - > product.html
我已经有了一些价值观: {{product.title}},这给了我“产品名称” {{product.url}},它为我提供了网址 等...
但无论我尝试什么,我都无法获取网址。
我最接近的是:{{product.main_image.data}} 这给了我这样的东西:
但这不会产生图像链接。
感谢任何帮助或见解。
提前致谢!
答案 0 :(得分:3)
您返回的字符串不起作用,因为它的尺寸为"""尺寸"占位符嵌入在URL中。您可以使用Stencil的getImage Handlebars帮助程序指定图像尺寸并返回工作URL:
{{getImage product.main_image.data "thumbnail"}}
"缩略图" string指定主题设置中存在的图像大小。您还可以指定数字大小,例如" 200x200"。查看文档here