前提・実現したいこと
railsでブログサイトをゼロから実装しています。
新規投稿と更新のformが同じコード設計のため、new.html.erbとedit.html.erbに部分テンプレートをしようとここみていますが、表記のエラーがターミナル上で出てしまいます。
発生している問題・エラーメッセージ
NoMethodError (undefined method `article' for #<Article:0x00007f2cdc2a0278>): app/controllers/articles_controller.rb:16:in `create'
該当のソースコード
ruby
1[ new.html.erb ] 2<% provide :submit, '新規作成' %> 3<div class="container"> 4 <div class="row"> 5 <div class="col-md-12 mg-top"> 6 <h2 class="text-center">ブログの新規作成</h2> 7 </div> 8 <div class="col-md-12 border mg-top"> 9 <div class="content"> 10 <%= image_tag "/flower.jpg", class: "img-size" %> 11 <%= render "form", article: @article %> 12 </div> 13 </div> 14 </div> 15</div> 16
ruby
1[ edit.html.erb ] 2<% provide :submit, '更新' %> 3<div class="container"> 4 <div class="row"> 5 <div class="col-md-12 mg-top"> 6 <h2 class="text-center">ブログの編集</h2> 7 </div> 8 <div class="col-md-12 border mg-top"> 9 <div class="content"> 10 <%= image_tag "/flower.jpg", class: "img-size" %> 11 <%= render "form", article: @article %> 12 </div> 13 </div> 14 </div> 15</div> 16
ruby
1[articles_controller.rb ] 2class ArticlesController < ApplicationController 3 before_action :find_article, only: [:show, :edit, :destroy, :update] 4 def index 5 @articles = Article.order(created_at: :desc) 6 end 7 8 def show 9 end 10 11 def new 12 @article = Article.new 13 end 14 15 def create 16 @article = Article.new(params_article) 17 byebug 18 if @article.save 19 redirect_to articles_path, notice: "新規作成できました。" 20 else 21 render :new, alert: "作成に失敗しました。" 22 end 23 end 24 25 def edit 26 27 end 28 29 def update 30 if @article.update(params_article) 31 redirect_to articles_path, notice: "更新できました。" 32 else 33 render :edit, alert: "更新に失敗しました。" 34 end 35 end 36 37 def destroy 38 if @article.destroy 39 redirect_to articles_path, notice: "削除しました。" 40 else 41 render :show, alert: "削除できませんでした。" 42 end 43 end 44 45 private 46 def find_article 47 @article = Article.find(params[:id]) 48 end 49 50 def params_article 51 params.require(:article).permit(:title, :content) 52 end 53end 54
ruby
1[ _form.html.erb ] 2<%= form_with model: article do |f| %> 3 <div class="form-group form-top"> 4 <%= f.label :title, class: "form-margin" %> 5 <%= f.text_field :title, class: "form-control" %> 6 </div> 7 <div class="form-group"> 8 <%= f.label :content, class: "form-margin" %> 9 <%= f.text_area :content, cols: "30", rows: "20", class: "form-control" %> 10 </div> 11 <%= f.submit yield(:submit), class: "btn btn-primary btn-block" %> 12<% end %>
試したこと
エラー文からarticle
が定義されていないように見受けられましたので<%= render "form", article: @article %>
のタイプミスなどが原因かと思っていましたが、タイプミスなども差分ツールなどで確認も見つけられませんでした。
また、byebugでも確認を行いました。
ruby
1[12, 21] in /home/ec2-user/environment/blog_app/app/controllers/articles_controller.rb 2 12: end 3 13: 4 14: def create 5 15: @article = Article.new(params_article) 6 16: byebug 7=> 17: if @article.save 8 18: redirect_to articles_path, notice: "新規作成できました。" 9 19: else 10 20: render :new, alert: "作成に失敗しました。" 11 21: end 12(byebug) @article 13#<Article id: nil, title: "タイトルのテスト", content: "っっっっっっっ っっっっっっっっっっっっっk\n\n\nああああああああああああああああ\n\nああああああああ...", user_id: nil, created_at: nil, updated_at: nil> 14(byebug) article 15*** NameError Exception: undefined local variable or method `article' for #<ArticlesController:0x00007f2cd902cdf0> 16Did you mean? @article
現状の理解として、<%= render "form", article: @article %>
のarticle: @article
でarticleにインスタンスの@articleを持たせて_form.html.erbで使用できるように渡しているような理解でしたが、何かズレている点などございますでしょうか。
また、本件の解決策ないし、ヒントなどいただけますと幸いでございます。
大変お忙しい中と存じますが、何卒ご回答いただけますようお願い致します。
補足情報(FW/ツールのバージョンなど)
'rails', '~> 5.1.6'
'sqlite3'
回答1件
あなたの回答
tips
プレビュー