0
非常簡單...我只想顯示一個本地pdf文件,我已經保存在我的公共目錄中,而不是作爲鏈接下載它。所以我想我應該使用由send_file像這樣:rails send_file with pdf
<%= send_file("http://localhost:3000/exex11.pdf", :type => 'application/pdf', :disposition => 'inline') %>
不過,我得到:undefined method
由send_file」爲#<#:0x94c3020>`請注意,我知道我應該使用root_url但我使用本地主機: 3000僅用於測試目的。
我查這個工作只是爲了確保該文件是存在的:
<%= link_to "The file", "http://localhost:3000/exex11.pdf" %>