我希望能够使用Active_admin中的formtastic删除编辑表单中的图像。有很多关于此的帖子,但由于某些原因,我似乎无法使其符合我的设置。
我有一个Post
模型和一个NewsImages
模型,其中包含每个帖子的图像:
class Post < ActiveRecord::Base
has_many :news_images, dependent: :destroy
accepts_nested_attributes_for :news_images, allow_destroy: true
end
class NewsImage < ActiveRecord::Base
belongs_to :post
has_attached_file :photo
end
因此,根据我所读的内容,可以将一个标志添加到我的NewsImage模型中,并使用之前的保存方法来删除该图像。我设想它看起来像这样,但单击复选框时不会删除图像。
#/admin/post.rb
f.has_many :news_images do |p|
if p.object.new_record?
p.input :photo, as: :file
else
p.input :photo, as: :file, :hint => p.template.image_tag(p.object.photo.url(:thumb))
p.input :remove_image, as: :boolean, required: :false, label: 'Remove image'
end
end
在此阶段我在控制台中注意到的一点是,当点击进出复选框时,它的值不会更改为选中或取消选中;应该是吗?
NewsImage模型现在看起来像
class NewsImage < ActiveRecord::Base
before_save :remove_photo
belongs_to :post
private
def remove_photo
self.photo.destroy if self.remove_image == '1'
end
end
这里有什么东西会导致这种情况无效,或者某人有这种设置的解决方案吗?
答案 0 :(得分:6)
希望这能帮助处于同一位置的人。您无需在此处构建自定义方法来删除图像,只需在表单中使用
即可 p.input :_destroy, as: :boolean, required: :false, label: 'Remove image'
并在您的控制器(permit_params)中传递
:_destroy
在嵌套属性中,例如
permit_params :title, :content, :news_category_id, :author,
news_images_attributes: [:id, :photo, :post_id, :_destroy]