我使用 Active admin 作为我的 rails 应用程序后端。我想做一个文件上传。我怎样才能完成这个功能?
问问题
30410 次
4 回答
75
我找到了一种将 Paperclip 与 Active Admin 一起使用的方法。
我在我的模型“事件”中添加了这段代码:
has_attached_file :map, :styles => { :medium => "238x238>",
:thumb => "100x100>"
}
我为我的管理模型做了这个:
ActiveAdmin.register Event do
form :html => { :enctype => "multipart/form-data" } do |f|
f.inputs "Details" do
f.input :continent
f.input :event_type
f.input :name
f.input :title
f.input :content
f.input :date_start, :as => :date
f.input :date_end, :as => :date
f.input :place
f.input :map, :as => :file
f.input :image, :as => :file, :hint => f.template.image_tag(f.object.image.url(:medium))
f.input :userfull_info
f.input :price
f.input :phone, :as => :phone
f.input :website, :as => :url
end
f.buttons
end
end
要在索引页面上使用它,您必须使用:
column "Image" do |event|
link_to(image_tag(event.image.url(:thumb), :height => '100'), admin_event_path(event))
end
default_actions
end
于 2011-08-17T07:42:42.183 回答
13
它适用于 Rails 4.1 和 Paperclip 4.1:
模型
class Hotel < ActiveRecord::Base
has_attached_file :thumbnail, :styles => { :medium => "300x300#", :thumb => "200x200#" }
validates_attachment :thumbnail, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png"] }
end
管理模型
ActiveAdmin.register Hotel do
permit_params :name, :description, :price, :thumbnail
form do |f|
f.inputs "Project Details" do
f.input :name
f.input :thumbnail, :required => false, :as => :file
# Will preview the image when the object is edited
end
f.actions
end
show do |ad|
attributes_table do
row :name
row :thumbnail do
image_tag(ad.thumbnail.url(:thumb))
end
# Will display the image on show object page
end
end
end
于 2014-04-02T09:22:56.833 回答
6
我正在使用 rails 3.0.1 和以下代码
f.input :image, :hint => "current image: #{f.template.image_tag(f.object.image.url(:thumb))}"
返回一个字符串。搜索解决方案后,我找到了它。
f.input :image, :hint => f.template.image_tag(f.object.image.url(:thumb))
直接发送对象,会返回一个图片到html
于 2011-12-04T00:42:22.663 回答
5
在最新版本的 ActiveAdmin 和 Rails 6 中,我们需要使用以下代码来显示文件字段
ActiveAdmin.register Project do
permit_params :name, :uploads
form multipart: true do |f|
f.inputs "Project Details" do
f.input :name
f.input :uploads, as: :file, required: false
end
f.actions
end
end
在一些旧版本的 AA 中,以下代码也有效。
f.input:上传,必需:false
于 2014-03-21T10:16:51.870 回答