我缺少什麼權限或者是其他內容?S3鏈接時自動下載圖片
我們使用S3進行存儲併爲中等流量的網站提供圖像。 我們構建了一個自定義縮略圖滑塊,可將小縮略圖圖像以不同分辨率鏈接到較大的滑塊圖像。
在S3進場之前,圖像會互相鏈接。現在,一旦縮略圖被點擊,圖像就會自動下載,而不僅僅是鏈接到較大的圖像。有什麼想法嗎?
這是代碼,但這只是一個真正的S3問題。謝謝!
<div class="thumbnails" itemscope itemtype="http://schema.org/ImageGallery">
<ul id="easy-slide">
<i id="prev" class="fa fa-arrow-circle-o-left" aria-hidden="true"></i>
{thumbnails}
<li itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
<a href="{thumbnails:large}" itemprop="contentUrl" data-size="500x500">
<img src="{thumbnails:thumb}" height="100px" width="100px" itemprop="thumbnail" alt="Image description" />
</a>
</li>
{/thumbnails}
<i id="next" class="fa fa-arrow-circle-o-right" aria-hidden="true"></i>
</ul>
</div>
執行圖像有正確的MIME類型?圖像/ JPEG或圖像/ PNG等?如果沒有,您需要更改或重新上傳新的MIME類型 –
有沒有辦法爲整個文件夾或存儲桶策略設置?我不確定如何檢查。 –
檢查確定。使用'curl -I -v http:// www.example.com/image.jpg'並確認'Content-Type' –