非常简单...我只想显示我保存在公共目录中的本地 pdf 文件,而不是作为下载链接。所以我想我应该像这样使用 send_file :
<%= send_file("http://localhost:3000/exex11.pdf", :type => 'application/pdf', :disposition => 'inline') %>
但是,我得到:undefined method
#<#:0x94c3020>` 的 send_file' 注意,我知道我应该使用 root_url 但我使用 localhost:3000 只是为了测试目的。
我检查了这只是为了确保文件在那里:
<%= link_to "The file", "http://localhost:3000/exex11.pdf" %>