ruby-on-rails – Rails 3:如何在Controller中获取图像路径?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails 3:如何在Controller中获取图像路径?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
要在控制器I中获取图像路径,请使用以下方法
class AssetsController < ApplicationController
  def download(image_file_name)
    path = Rails.root.join("public","images",image_file_name).to_s
    send_file(path,...)
  end
end

有没有更好的方法来找到路径?

解决方法

ActionController::Base.helpers.asset_path('missing_file.jpg')

Access Asset Path from Rails Controller

原文链接:https://www.f2er.com/ruby/273194.html

猜你在找的Ruby相关文章