ログイン機能追加をしているうちに、デグレートを起こしてしまいました。ステータスに入力せずタスクの登録を行うと、
入力画面に戻ってバリデーションエラーを表示していたはずなのですが。。。。
コード
tasks_controller.rb class TasksController < ApplicationController before_action :require_user_logged_in before_action :correct_user, only: [:show, :edit, :update, :destroy] #同じものをまとめる def index if logged_in? @task = current_user.tasks.build @tasks = current_user.tasks.order(id: :desc).page(params[:page]) end end def show @task = Task.find(params[:id]) end def new @task = Task.new end def create @task = current_user.tasks.build(task_params) if @task.save flash[:success] = 'タスクが作成されました。' redirect_to root_url else @task = current_user.tasks.order(id: :desc).page(params[:page]) flash.now[:danger] = 'タスクが作成されません。' render :new end end def edit @task = Task.find(params[:id]) end def update @task = Task.find(params[:id]) if @task.update(task_params) flash[:success] = 'タスクが編集されました' redirect_to @task else flash.now[:danger] = 'タスクが編集されませんでした' render :new end end def destroy @task.destroy flash[:success] = 'タスクは削除されました' redirect_to tasks_url end private def task_params params.require(:task).permit(:content, :status) end def correct_user @task = current_user.tasks.find_by(id: params[:id]) unless @task redirect_to root_url end end end コード
_form.html.erb <div class ="row"> <div class= "col-6"> <%= form_with(model: task, local: true) do |f| %> <% if task.errors.any? %> <div id="error_explanation" class ="alert alert-warning"> <ul> <% task.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <div class= "form-group"> <%= f.label :status, 'ステータス'%> <%= f.text_field :status, class: 'form-control' %> </div> <div class="form-group"> <%= f.label :content, 'タスク' %> <%= f.text_field :content, class: 'form-control' %> </div> <%= f.submit '投稿', class: 'btn btn-primary' %> <% end %> </div> </div> コード
new.html.erb <h1>タスクの作成</h1> <%= render 'form', task: @task %> コード
routes.rb Rails.application.routes.draw do get 'sessions/new' get 'sessions/create' get 'sessions/destroy' get 'login', to: 'sessions#new' post 'login', to: 'sessions#create' delete 'logout', to: 'sessions#destroy' root to: 'tasks#index' get 'signup', to: 'users#new' resources :users, only: [:new, :create] resources :tasks end コード
コード
[エラー画面]
(https://gyazo.com/a4095a668272271299c75d465c9071b5)
エラー内容
NoMethodError in Tasks#create
Showing /home/ec2-user/environment/tasklist/app/views/tasks/_form.html.erb where line #3 raised:
undefined method `to_model' for #Task::ActiveRecord_AssociationRelation:0x0000000006c84a00
Did you mean? to_xml
Extracted source (around line #3):
1<div class ="row">
2 <div class= "col-6">
3 <%= form_with(model: task, local: true) do |f| %>
4 <% if task.errors.any? %>
5 <div id="error_explanation" class ="alert alert-warning">
6 <ul>
回答2件
あなたの回答
tips
プレビュー