我有simple_form_for元素的新頁面如下圖所示多個HTML屬性Simple_form_for
<%= simple_form_for @invoice, :html => { :class => 'form-horizontal' } do |f| %>
<%= render "shared/error_messages", :target => @invoice %>
<%= f.association :customer %>
<%= f.input :invoice_date, as: :string, input_html: { class: "datepicker"} %>
<% end %>
我試圖日曆元素納入上述表單,從unicorm管理模板主題。 我的資產文件包含bootstrap-datepicker.js,我試圖將其納入上述表單中。 每當我爲invoice_date輸入添加額外的HTML屬性時,我都會收到一個syntaxt錯誤。
我想這
<%= f.input :invoice_date, as: :string, input_html: { class: "datepicker", data-date-format="dd-mm-yyyy"} %>
其產生的誤差。如何將日曆功能併入我的模板中的bootstrap-datepicker.js以上的invoice_date?