ruby-on-rails 如何在Active Admin中显示通过载波上传图像?

pu82cl6c  于 2022-11-19  发布在  Ruby
关注(0)|答案(1)|浏览(103)
show do
    attributes_table do
      # byebug
      row :title
      row :description 
      row :image_url
      row :image_url do |img|
        if img.image_url.present?
          image_tag url_for(img.image_url), :size => "200x150" rescue nil
        end
      end       
      row :price
    end
  end

错误如下,我想不出如何修复它-有更多有经验的人知道我做错了什么吗?

iszxjhcz

iszxjhcz1#

您可以使用以下代码:

row "Image" do
 image_tag(img.image_url, style: 'width: 200px; height: 150px;')
end

有关更多信息,请查看此处:-https://activeadmin.info/6-show-pages.html

相关问题