参见英文答案 >
How to use placeholders instead of labels in simple_form?4个
我试图制作一个普通的简单形式
我试图制作一个普通的简单形式
= simple_form_for [:hq,@team,@order] do |f| .tickets = f.select :tickets,:aaa => "aaa" = render "ticket" .details .left = f.input :address1 = f.input :address2 = f.input :state = f.input :country = f.input :email .right = f.input :comments
但是我希望输入不能用标签呈现,只是在占位符中标题为“地址行1”.
我知道我可以用f.input:address1,placeholder => “whatever”,:label => “”但是我希望可以使用包装器进行配置,并使用i18n值表单标签,而不是占位符.
解决方法
尝试执行以下操作:
f.input :address1,placeholder: "Address Line 1",label: false