Rails send_file 和 send_data 发送零字节文件

发布于 2024-10-15 08:28:12 字数 543 浏览 4 评论 0原文

我正在尝试将 pdf 发送回用户,但在使 send_file 和 send_data 正常工作时遇到严重问题。我创建的pdf文件如下:

tmp = Tempfile.new('filled')
new_tmp_path = PDFPrint.fill_form_using_pdftk(template_path, tmp.path)
send_file (new_tmp_path, :filename => 'filled.pdf')

浏览器提示下载,但下载的filled.pdf文件有零字节。 我已经验证 new_tmp_path 确实包含有效的 pdf (良好的、填充的内容)

我已经尝试过:

File.open(new_tmp_path, 'r') do |f|
  send_data(f.read, :filename => "filled.pdf")
end

但这也给我带来了相同的下载->零字节问题,而服务器上的文件(new_tmp_path)具有完美的内容。

问候,

I'm trying to send a pdf back to the user but I'm having serious problem getting send_file and send_data to work. I created the pdf file as follows:

tmp = Tempfile.new('filled')
new_tmp_path = PDFPrint.fill_form_using_pdftk(template_path, tmp.path)
send_file (new_tmp_path, :filename => 'filled.pdf')

The browser prompts for a download, but the downloaded filled.pdf file has zero byte.
I have verified that new_tmp_path does contain a valid pdf (good, filled content)

I have tried this:

File.open(new_tmp_path, 'r') do |f|
  send_data(f.read, :filename => "filled.pdf")
end

But this also gives me the same download->zero-byte problem, while the file on server (new_tmp_path) has perfect content.

Regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情泪▽动烟 2024-10-22 08:28:12

尝试发送一个简单的文件,看看它是否有效

send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline'

阅读此线程,我想它有你需要的一切。

Try sending a simple file to see if it works

send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline'

Read this thread, I think it has everything you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文