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

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

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

解决方法

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

Access Asset Path from Rails Controller

猜你在找的Ruby相关文章