変種機能を実装したいのですが、ルーティングエラーにはまってしまい、どの部分が原因なのかわからない状況です。
画像はlocalhost:3000/tasksにアクセスした時のエラーです
<index.html.erb>
<%= link_to "edit", "/tasks/#{@task.id}/edit" %>
<% end %>
<route.rb> ```ここに言語を入力 Rails.application.routes.draw do get 'tasks' => 'tasks#index' get 'tasks/new' => 'tasks#new' post 'tasks/create' => 'tasks#create' delete 'tasks/:id' => 'tasks#destroy' get 'tasks/:id/edit' => 'tasks#edit' post 'tasks/:id/update' => 'tasks#update' # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html end
edit.html.erb
<%= form_with url: "/tasks/#{@task.id}/update", local:true do |f| %> <p><%= f.text_field :title, class: "form-control" %></p> <p><%= f.submit "edit", class: "btn btn-outline-primary" %></p> <% end %>
<tasks_controller.rb>
class TasksController < ApplicationController
def edit
@task = Task.find(params[:id])
binding.pry
end
def update
@task = Task.find(params[:id])
@task.update(title: params[:title])
redirect_to "/tasks"
end
end
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。