前提・実現したいこと
railsでアウトラインに沿って簡単なブログを作る練習をしていたところ、エラーが出てしまいました。
エラーが出た場面としては、
ブログの記事一覧のページから、それぞれの投稿の編集ページへのリンクを押すと、以下のエラーが表示されます。
発生している問題・エラーメッセージ
該当のソースコード
edit.html.erb
<h1>記事を編集する</h1> <%= form_with(model: @article, local: true) do |form| %> <% if @article.errors.any? %> <div id="error_explanation"> <h2> <%= pluralize(@article.errors.count, "error") %> prohibited this article from being saved: </h2> <ul> <% @article.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <p> <%= form.label :title %><br> <%= form.text_field :title %> </p> <p> <%= form.label :text %><br> <%= form.text_area :text %> </p> <p> <%= form.submit %> </p> <% end %>
index.html.erb
<h1>記事の一覧</h1> <table> <tr> <th> title </th> <th> text </th> <th colspan="2"></th> </tr> <tr> <% @articles.each do |article| %> <td> <%= article.title %> </td> <td> <%= article.text %> </td> <td> <%= link_to "詳細", article_path(article) %> </td> <td> <%= link_to "編集", edit_article_path(article) %></td> </tr> <% end %> </tabel>
show.html.erb
<p> <strong>Title:</strong> <%= @article.title %> </p> <p> <strong>Text:</strong> <%= @article.text %> </p>
試したこと
●インスタンスの定義の漏れがないか。(コントローラー、new.html.erb、edit.html.erb、index.html.erbの中で)
●スペルミスがないか
●参考にしていた教材と差異があるかどうか
補足情報(FW/ツールのバージョンなど)
railsの学習を始めたばかりでございます。30分自分なりに考え、検索しましたが、エラーが直らなかったため、質問させていただきました。
知識不足で大変恐縮ですが、是非問題を解決して前に進みたいと考えております。
ご教授のほど頂けると幸いです。
###追記
大変失礼いたしました。コントローラーのコードがこちらになります。
class ArticlesController < ApplicationController # 記事の一覧表示 def index @articles = Article.all end # 記事の表示 def show @article = Article.find(params[:id]) end # 記事の作成 def new @article = Article.new end # 記事の登録 def create # articleモデルの属性の初期化 @article = Article.new(article_params) # articleモデルをDBへ保存 if @article.save # showアクションにリダイレクト redirect_to @article else #作成ページに移動する render "new" end end # コントローラパラメータの定義 private def article_params params.require(:article).permit(:title, :text) end def edit @article = Article.find(params[:id]) end # 記事の更新 def update @article = Article.find(params[:id]) # DBに登録できた場合 if @article.update(article_params) # 記事ページに遷移する redirect_to @article # DBに登録できなかった場合 else # 編集ページに遷移する render 'edit' end end # 記事の削除 def destroy end end
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/03 12:52