我有多个图像上传器供模型使用载波。
[![show do
attributes_table do
row :icon do |res|
image_tag res.icon.url(:icon)
end
row :desc_images do |res|
res.desc_images.each_with_index do |image, index|
image_tag image.thumb.url
end
end
end
end]
official documentation 图标正在工作
但 desc_images 中的 image_tag 不能在图像中显示。
这怎么可能像图标行那样显示?在哪里可以找到有关此问题的文档?
答案 0 :(得分:1)
您的代码似乎还可以,您可以尝试将其添加到列表中吗
row :desc_images do
ul do
res.desc_images.each do |img|
li do
image_tag(image.thumb.url)
end
end
end
end