我在 Rails 3.1 应用程序中同时使用 ActiveAdmin 和 Paperclip。在我的用户模型中,我使用的是 Paperclip,因此用户可以上传 PDF。我想要做的是显示 PDF 文件的链接,而不是在表中看到分段的回形针字段(即 file_name、content_type、file_size)。
我的 user.rb 模型:
has_attached_file :letter
validates_attachment_content_type :letter, :content_type => ['image/jpeg', 'image/jpg', 'image/png', 'image/gif', 'application/pdf', 'image/tiff'], :message => "Only pdf, jpeg, gif, tiff and png files are allowed"
我的 ActiveAdmin 的 user.rb:
ActiveAdmin.register User do
index do
id_column
column :username
column :email
default_actions
end
end