简单的表单关联标签与图像

时间:2013-01-28 23:40:50

标签: ruby-on-rails ruby-on-rails-3 simple-form

我想在简单的表单关联

上显示礼物上的图像

我使用label_method尝试了此代码,但它不起作用:

<%=f.association :gift, :collection=> Gift.all, :label_method=>lambda { |gift| "#{gift.name}  #{image_tag 'gift.photo.url(:small)'}" }, :value_method=> :id, :as=>:radio_buttons%>

1 个答案:

答案 0 :(得分:0)

此代码可以帮助您显示带有图像的复选框

<%= f.association :gift,
             :as => :check_boxes,
             item_wrapper_tag: :div,
             item_wrapper_class: "image-select",
             :collection => Gift.all,
             :label => false,
             :inline_label => false,
             :include_blank => false,
             :input_html => {multiple: true},
             :label_method => lambda { |b| image_tag(b.photo.url) },
             value_method: :id
           %>

如果要使用字符串,别忘了使用html_safe