1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?