我是Bolt的新手,我試圖在記錄的圖像列表中獲取圖像的原始寬度。 'image'的變量只包含文件名,標題,ID,順序和文件,所以image.width | image不會執行任何操作。我寧可不使用縮略圖(寬度,高度)方法,除非我可以用它來訪問圖像的全尺寸尺寸,而不是裁剪版本。螺栓:爲圖像列表中的項目獲取imageinfo
https://docs.bolt.cm/record-and-records#imagelist
https://docs.bolt.cm/templatetags#imageinfo
有沒有辦法使用的imageinfo()的圖像列表循環中得到的寬度和高度的方式,或者是有沒有更好的辦法去了解它?謝謝你的幫助!
{% setcontent myprojects = 'projects' %}
{% for project in myprojects %}
<div class="slide">
{% for image in project.imagelist %}
<img src="{{ image.filename|image }}" width="{{ image.width|image }}" height="{{ image.height|image }}">
{% endfor %}
</div>
{% endfor %}
謝謝你,我發現這是很有幫助 – esd
這應該是公認的答案,因爲它工作得很好。 – anteatersa