使用
<%= f.input :email, required: true, label:false, placeholder: "Email Adress", autofocus: true %>
生成的输出将是&#34;电子邮件地址&#34;作为占位符。 是否有可能抑制这种下降?
答案 0 :(得分:-1)
我认为这是因为如果你还将任何非html属性传递给simpleforms input_html
,你必须在input
哈希中包含额外的html属性。
试试这个:
<%= f.input :email, required: true, label: false, input_html: { placeholder: "Email Adress", autofocus: true }