作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要我的用户在其个人资料上上传诸如pdf和txt广告之类的文档。我使用Carrierwave做到了这一点,所以我有了带有标题和URL的文档列表。
但是,如何使其他用户下载这些文件?我必须使用 gem 吗?或者因为我刚接触Rails,还有什至不知道的原生东西吗?
谢谢
编辑:
Society.rb
class Society < ActiveRecord::Base
...
has_many :documents, :dependent => :destroy
end
class Document < ActiveRecord::Base
belongs_to :society
mount_uploader :url, DocumentUploader
end
<% @society.documents.each do |doc| %>
<%= link_to "Download it", doc.url %> //url is the column name of the saved url
<% end %>
最佳答案
我不使用Carrierwave,但我想它与Paperclip类似。
因此,您应该可以使用类似这样的东西
link_to 'Download file', user.file.url
关于ruby-on-rails - Rails : How to download a previously uploaded document?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11690257/
我是一名优秀的程序员,十分优秀!