2012-09-18 70 views
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" %> 

回答

1

所以我想我應該使用由send_file像這樣

我想你應該使用在你的控制器的行動,而不是在視圖中使用