前提・実現したいこと
勉強を初めて一ヶ月ほどの初心者で、Youtubeにある作成動画を写しながらブログを作成する勉強をしています。
リンク機能を実装中に、rbファイルの2行目、
before_action :find_post, only: [:show, :edit, :update, :destroy]
の「find_post」を「find_article」に書き換えたところ、以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
NoMethodError in ArticlesController#show undefined method `find_article' for #<ArticlesController:0x00007fd8cf9bd0c0> Extracted source (around line #426): 424 lambda do |target, value, &block| 425 target, block, method, *arguments = expand(target, value, block) 426 target.send(method, *arguments, &block) 427 end 428 end 429
該当のソースコード
html
1<div class="container"> 2 <h1 class="text-center">テスト作成ブログ</h1> 3 <% @articles.each do |article| %> 4 <%= link_to article do %> 5 <div class="col-md-3 margin-top-5per article-block "> 6 <%= image_tag "cat.jpg", class:'img-responsive padding-top-15' %> 7 <div class="padding-bottom-15"> 8 <p class="title"><%= article.title %></p> 9 <span> 10 <%= article.created_at.strftime("%Y年%m月%d日") %> 11 </span> 12 </div> 13 </div> 14 <% end %> 15 <% end %> 16</div>
rb
1class ArticlesController < ApplicationController 2 before_action :find_article, only: [:show, :edit, :update, :destroy] 3 4 def index 5 @articles = Article.order(created_at: :desc) 6 end 7 8 def show 9 10 end 11 12 def new 13 @article = Article.new 14 end 15 16 def edit 17 end 18 19 def create 20 @article = Article.new(article_params) 21 if @article.save 22 redirect_to @article, notice: '作成できました' 23 else 24 render :new, alert: '作成できませんでした' 25 end 26 end 27 28 def update 29 if @article.update(article_params) 30 redirect_to @article, notice: '更新できました' 31 else 32 render :edit, alert: '更新できませんでした' 33 end 34 end 35 36 def destroy 37 if @article.destroy 38 redirect_to root_path, notice: '削除に成功しました' 39 else 40 redirect_to root_path, alert: '削除できませんでした' 41 end 42 end 43 44 private 45 46 def find_post 47 @article = Article.find(params[:id]) 48 end 49 50 def post_params 51 if @article.save 52 53 end 54 end 55 56 57 end 58
試したこと
NoMethodErrorで検索をしたりしたのですが、どこにどう繋がるのかもよくわかりませんでした…
補足情報(FW/ツールのバージョンなど)
VSCodeです。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/22 13:24