2

我想在简单的表单关联上显示礼物上的图像

我尝试使用此代码,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%>
4

1 回答 1

1

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

<%= 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

于 2020-03-19T02:12:39.293 回答