我正在使用Rails 5.2应用程序中的simple_form gem。目前,我在输入中使用custom wrappers时遇到了一些问题。
config.wrappers :mini_input, tag: 'div', class: 'row responsive-label', error_class: 'error' do |b|
b.use :html5
b.wrapper tag: 'div', class: 'col-sm-12 col-md-3' do |c|
c.use :label_input
end
b.wrapper tag: 'div', class: 'col-sm-12 col-md-4' do |c|
c.use :input
end
end
simple_form_for(@user) do |f|
...
<%= f.input :name, required: true, label: "Name", autofocus: true, wrapper: :mini_input %>
...
end
<div class="row responsive-label">
<div class="col-sm-12 col-md-3">
<label ...>
</div>
<div class="col-sm-12 col-md-4">
<input ...>
</div>
</div>
<div class="row responsive-label">
<div class="col-sm-12 col-md-3">
<label ...>
<input ...> <!-- This input should not be here -->
</div>
<div class="col-sm-12 col-md-4">
<input ...>
</div>
</div>
我想也许我的包装器配置中有错误,我现在无法找到它。
答案 0 :(得分:1)
正如我的一位朋友in a tweet所指出的,解决方案是在包装器配置中使用label
而不是label_input
。
config.wrappers :mini_input, tag: 'div', class: 'row responsive-label', error_class: 'error' do |b|
b.use :html5
b.wrapper tag: 'div', class: 'col-sm-12 col-md-3' do |c|
# c.use :label_input Wrong
c.use :label
end
b.wrapper tag: 'div', class: 'col-sm-12 col-md-4' do |c|
c.use :input
end
end