LoginSignup
15
11

More than 5 years have passed since last update.

Rails selectでinclude_blankやpromptを表示する

Posted at

自分向けのメモです。


# include_blankやpromptは3番目の引数(タグ情報)に指定する

 f.select :prefecture, Prefecture.all.map { |obj| obj.value },{include_blank: true}, {class: 'form-control'} 

selectにclass属性を適用する場合は、4番目の引数(オプション)に指定する

 f.select :prefecture, Prefecture.all.map { |obj| obj.value },{}, {class: 'form-control'} 

15
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
11