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
错误如下,我想不出如何修复它-有更多有经验的人知道我做错了什么吗?
1条答案
按热度按时间iszxjhcz1#
您可以使用以下代码:
有关更多信息,请查看此处:-https://activeadmin.info/6-show-pages.html