ruby-on-rails – send_file只是发送一个空文件

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – send_file只是发送一个空文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一种方式来下载一个xml文件.我用:
file_path = 'folder/' + xml_name + '.xml'
send_file file_path,:type => "text/xml"

但这总是给我一个空文件.文件本身有16 KB的数据…

这是为什么?

Maechi

解决方法

可能你必须评论

config.action_dispatch.x_sendfile_header =“X-Sendfile”

在production.rb

http://vijaydev.wordpress.com/2010/12/15/rails-3-and-apache-x-sendfile/的解释

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

猜你在找的Ruby相关文章