0
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 3 years have passed since last update.

【Ruby on Rails】頻出しそうなFormHelperをまとめる

Posted at

#対象者

  • form_with, form_forを使っている方へ

#目的

  • FormHelperにどんな種類があるか把握して、引き出しを増やすこと

#実際の手順と実例
###1. 前提

form_withの基本構文は下記の通りです。

###2. よく使用するFromHelper一覧

1 2
check_box チェックボックスタグを生成
file_field ファイルアップロード用のタグ生成
hidden_field 特定の属性にアクセスするための、隠されたinputタグを返す
label フォームに属した名前(ラベル)を返す
password_field パスワードのためのタグ生成
radio_button ラジオボタンをタグを生成
text_area 長文用テキストを生成
text_field 短文用のテキスト生成
email_field メール用のタグ生成
url_field URL用のタグ生成

#参考にさせて頂いた記事

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