1

我正在尝试在 rails 3 中通过 send_file 发送文件...该文件已找到并且似乎也已发送,但由于某种原因未收到它...

此外,即使 :disposition => 'inline' 已设置,浏览器始终显示“下载框”...

在 nginx conf 中,sendfile 设置为 on...

4

2 回答 2

0

我建议你应该通过这个:Serving Large Files Through Nginx via Rails 2.3 Using x-sendfile

于 2011-01-13T07:56:48.360 回答
0

我遇到了同样的问题,我查看了响应标头,发现响应类型被设置为 application/octet-stream. 调用 send_file 时尝试设置文件的 mime 类型

send_file file, :disposition => 'inline', :type => 'image/png'

于 2011-10-25T20:45:37.113 回答