問題一覧に戻る
初級Rails基礎
問題16: フォーム基礎 - form_withでのCRUD

Railsのform_withヘルパーを使ってCRUD操作用のフォームを作成する方法を学習します。

# モデルベースのフォーム
<%= model: @post do |form| %>
<%= form.text_field :title %>
<%= form.submit %>
<% end %>

# URLベースのフォーム
<%= form_with posts_path do |form| %>
<%= form.text_field :title %>
<% end %>

# 複数行テキスト入力
<%= form. :content, rows: 10 %>

# 送信ボタン
<%= form. 'Create Post' %>