如何将查询字符串添加到 BigCommerce 代码中?

How to add a querystring into BigCommerce code?

如何在“image=product.main_image”指令之后添加查询字符串。我只想向图像的 SRC 标签添加一个查询字符串,但我不知道如何编辑 BigCommerce 代码。谢谢。

    {{> components/common/responsive-img
                image=product.main_image
                class="productView-image--default"
                fallback_size=theme_settings.product_size
                lazyload=theme_settings.lazyload_mode
                default_image=theme_settings.default_image_product
                otherAttributes="data-main-image"
    }}

这里的main_image 属性其实是一个对象,里面嵌套了URL。所以你不能直接向它添加查询字符串。

您可以在组件本身内执行此操作,例如此处:

https://github.com/bigcommerce/cornerstone/blob/master/templates/components/common/responsive-img.html#L39

如果您愿意,可以在结果之上调用 {{setURLQueryParam}} helper 来添加参数。