我正在使用带有 Bootstrap 4 的 Rails 4.2.4(使用 bootstrap_ruby gem)。
简单表单向表单添加输入类型类...如果输入是字符串,它将string
向输入添加一个类。我想知道如何阻止这种情况发生?
例如,如果我有一个带有文件输入的表单。
simple_form_for @attachment do |f|
f.input_field :file, as: :file
end
它将生成以下 HTML:
<form>
...
<div class="form-group file optional photo_image">
<label class="file optional control-label" for="attachment_file">File</label>
<input class="file optional" type="file" name="attachment[file]" id="attachment_file"></div>
...
</form>
它将file
类添加到label
和input
字段。有没有办法file
在构建表单时删除类?
我正在尝试使用 Bootstrap 4 (Alpha),它与file
类名冲突。
我以为我可以做到这一点,config.wrappers
但它将输入类型添加为一个类,例如。string, file
.
提前致谢。