跳到內容 跳到搜尋

擷取 blob 的簽署永久參考,並將其轉換為下載用的到期服務網址。

警告:預設情況下,所有 Active Storage 控制器都是公開可存取的。產生的網址很難猜測,但設計上為永久性質。如果您的檔案需要較高的保護層級,請考慮實作 經過驗證的控制器

方法
S

執行個體公開方法

show()

# File activestorage/app/controllers/active_storage/blobs/redirect_controller.rb, line 12
def show
  expires_in ActiveStorage.service_urls_expire_in
  redirect_to @blob.url(disposition: params[:disposition]), allow_other_host: true
end