#解決したいこと
エラー文を解決したい
https://gyazo.com/0be8fdc11813c25ea72bc2181155d89d
エラーメッセージ『NoMethodError in Category#new』
#コード
category_controller.rb
ruby
1 2class CategoryController < ApplicationController 3 def new 4 @category = Category.new 5 end 6 7 def create 8 @category = Category.new(category_params) 9 if @category.save 10 redirect_to root_path, notice: 'カテゴリーを作成しました' 11 else 12 render :new 13 end 14 end 15 16 private 17 def category_params 18 params.require(:category).permit(:name) 19 end 20end
category/new.html.haml
ruby
1 2= form_with model: @category, local: true do |f| 3 = f.text_field :name, class: "SettingGroupForm__input", placeholder: "カテゴリー名を入力してください" 4 = f.submit "Save", class: "SettingGroupForm__button"
views/messages/_side.html.haml
ruby
1 2.side-bar 3 .side-bar__main 4 .first-list 5 やりたいこと 6 = link_to new_category_path(current_user) do 7 = icon('fas','plus') 8 .first-name__list-name 9 死ぬまでに 10 .second-list 11 やるべきこと 12 = link_to new_deadline_path(current_user) do 13 = icon('fas','plus') 14 .second-list__list-name 15 1ヶ月以内
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/24 09:33
2020/09/24 09:35
2020/09/24 09:38