0

非常简单...我只想显示我保存在公共目录中的本地 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" %>
4

1 回答 1

1

所以我想我应该像这样使用 send_file

我想您应该在控制器的操作中使用它而不是在视图中使用

于 2012-09-18T01:22:04.417 回答