ruby-on-rails – Rails:活动管理员关联图像列

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails:活动管理员关联图像列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 ruby on rails的新手,刚刚安装了活动管理员,并试图自定义

观点.

我有一个产品和图像表.每个图像属于一个产品.

现在,我想在显示产品页面显示包含相关图像的列.

目前只有image_url文本不起作用.后来我想做

图片显示为50x50px.

我该怎么做? (图片模型:name:string image_url:text)

这是我做的:

ActiveAdmin.register Product do

index do
    column "Image" do |image|
        image.image_url
    end
    column :name
    column :preview_text
    column :full_text
    column :price,:sortable => :price do |product|
      div :class => "price" do
          number_to_currency product.price
     end
    end
 default_actions
 end
end

我不知道怎么用“做图像来修复那个部分.我是rails 2天exp的初学者..

似乎语法错误并抛出错误

undefined method `image_url' for #<Product:0x00000101b5a458>

谢谢

解决方法

您需要从图像对象product.image.image_url获取image_url.

关于图像尺寸,您可以显示所需尺寸的图像,如下所示

column "Image" do |product|
  image_tag product.image.image_url,class: 'my_image_size'
end

的CSS

.my_image_size {
  width: 50px;
  height: 50px;
}

或者您可以使用诸如CarrierWave之类的宝石来实际调整图像本身的大小.

原文链接:https://www.f2er.com/ruby/270730.html

猜你在找的Ruby相关文章