我在 Rails 3.2.1 中使用 Simple_form
一切都很好,除了我需要为 bootstrap popover 的 input_html 设置“数据内容”属性
但是,当我使用以下 Rails/Ruby 不喜欢代码时,因为“数据内容”方法中有一个破折号:
<%= f.input :first_name, :required => true, :label => "First Name", :autofocus => true, :input_html => {:rel => "tooltip", :title => "Testing!", :data-content => "Popover content"}
我得到一个错误:
undefined local variable or method `content'
有谁知道如何使用 simple_form 为输入元素设置数据内容???
谢谢