我正在使用的代码:
在视图文件中:
<%= link_to "Download",download_image_path(image) %>
在控制器中:
def download @image = Image.find(params[:id]) send_file "#{RAILS_ROOT}/public" + @image.attachment.url end
我收到一个错误:
Cannot read file /Users/mohit/projects/my_app/public/system/attachments/4/original/Screen Shot 2011-11-04 at 3.14.03 PM.png?1320582022
PS:双重检查,文件存在.服务器上的相同问题,适用于所有相应控制器中的所有文件(图像,pdf,视频).
@H_403_16@