1
0

More than 1 year has passed since last update.

【Rails】Formオプションdisabledとreadonlyの違い

Posted at

環境

Ruby 3.0.2
Rails 6.1.4.1

disabledとreadonlyの違い

disabled: trueでフォームを送信するとparamsに値は入らない
readonly: trueでフォームを送信するとparamsに値が入る

html.slim
= f.label :name, '名前'
  = f.text_field :name, disabled: true

1
0
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
1
0