跳至内容 跳至搜索

获取 blob 表示的签名永久引用并将其转换为用于下载的过期服务 URL。

警告:默认情况下,所有 Active Storage 控制器都是公开可访问的。生成的 URL 很难猜测,但设计上是永久的。如果您的文件需要更高级别的保护,请考虑实现 已认证的控制器

方法
S

实例公共方法

show()

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