我正在使用simple_form
并使用此包装器:
b.wrapper :form_container, tag: 'div', class: 'form__container' do |b2|
b2.use :input, class: 'form__input'
b2.use :error, wrap_with: { tag: 'span', class: 'form__error' }
b2.use :hint, wrap_with: { tag: 'span', class: 'form__comment' }
end
= f.input :foo, label: false, wrapper: false, form_container_html: { class: 'bar' }
生成表单时如何删除包装标签div
或类form__container
?我只需要删除此类或替换它即可。在我的情况下,只需将类bar
添加到form__container
。我想使用没有bar
的类form__container
。请帮帮我。