我有两个字段start_time
,end_time
我想在提交表单时更新。我希望它与滑块一起使用,所以基本上设置最小句柄start_time
和最大句柄将设置end_time
我有slider_input.rb
来自https://github.com/glyph-fr/simple_form_extension
class SliderInput < SimpleForm::Inputs::Base
def input(wrapper_options = nil)
input_html_options[:class] << 'form-control'
input_html_options[:data] ||= {}
input_html_options[:data][:'simple-form-slider'] = true
[:min, :max, :step, :orientation, :range, :value].each do |key|
if options.key?(key)
input_html_options[:data][:"slider-#{ key }"] = options[key]
end
end
input_html_options[:data][:'slider-value'] ||= object.send(attribute_name)
if options[:disabled]
input_html_options[:data][:'slider-enabled'] = false
end
if options[:ticks]
input_html_options[:data][:ticks] = options[:ticks].to_json
end
@builder.hidden_field(attribute_name, input_html_options)
end
end
在我看来,_form.html.slim
它看起来像这样
=f.input_field :start_time, as: :slider
现在,在我提交表单后,该值没有保存到数据库中。此外,有没有办法将start_time
和连接end_time
到一个输入字段以使用范围滑块?
谢谢