根据文件, https://stencil.bigcommerce.com/docs/other-handlebars-helpers
我使用CDN车把助手将图像添加到我的模板中:
<img src="{{cdn "webdav:img/about.jpg"}}">
主题上传后,它已更改为:
<img src="https://cdn6.bigcommerce.com/s-1tfospd5/content/img/about.jpg">
好的,但我需要更新图片。 将图片的新版本上传到bigcommerce webdav后,没有任何变化,我仍然看到旧版本。 如何更新CDN上的图片?
答案 0 :(得分:0)
您需要等待约30分钟,直到CDN获得新图像。
您可以通过向图像添加一些查询字符串来测试新图像是否存在:
https://cdn6.bigcommerce.com/s-1tfospd5/content/img/about.jpg?test=test_new_image
您可以尝试:
<img src="{{cdn "webdav:img/about.jpg?new=logo"}}">