我正在尝试自定义 simple_form 关联的输出,基本上我需要在两行上显示一个复选框标签。我的想法是在“标签”中添加一个“br”标签,但不幸的是它被转义了,所以它实际上显示“br”而不是换行
我使用 lambda 自定义标签输出
<%= f.association :item, :as => :check_boxes, :collection => current_user.items, :label => false, :label_method => lambda { |item| "#{item.city.capitalize},<br> #{item.address}" }%>
这会在标签字符串中产生一个转义的 br,我怎么能在两行上显示标签?