edit.html.erb
<h1>id: <%= @task.id %> のタスク編集ページ</h1> <%= form_with(model: @task, local: true) do |f| %> <%= f.label :content, 'タスク' %> <%= t.text_field :content %> <%= f.submit "投稿" %> <% end %> <%= link_to "一覧に戻る", task_path %>
taskscontroller.rb
def edit @task = Task.find(params[:id]) end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。