🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

1回答

2868閲覧

コメントの保存について

0W5E8fPq1EOm4yE

総合スコア13

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

1クリップ

投稿2020/11/26 13:09

編集2020/11/27 02:53

コメント機能の実装を行っている最中ですが,コメントを送信しようとすると保存されずルーティングエラーになりました。

prototypescontroller class PrototypesController < ApplicationController #CSRF保護を無効にする protect_from_forgery with: :null_session before_action :move_to_index, except: [:index, :show] def index @prototype = Prototype.all end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path(@prototype) else render :new @prototype = Prototype.includes(:user) end end def show @prototype = Prototype.find(params[:id]) @comment = @prototype.comment.new(comment_params) @comments = @prototype.comments.includes(:user) end def edit @prototype = Prototype.find(params[:id]) end def update @prototype = Prototype.find(params[:id]) @prototype.update(prototype_params) if @prototype.save redirect_to root_path(@prototype) else render :edit end end def destroy prototype = Prototype.find(params[:id]) prototype.destroy redirect_to root_path end private def prototype_params params[:prototype].permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) end def move_to_index unless user_signed_in? redirect_to action: :index end end def move_to_update unless user_signed_in? redirect_to action: :index end end def move_to_destroy unless user_signed_in? redirect_to action: :index end end end
comments_controller.rb class CommentsController < ApplicationController def create @comment = Comment.new(comment_params) if @comment.save redirect_to prototype_path(@comment.prototype) else @prototype = @comment.prototype @comment = @prototype.comment render :"prototypes/show" end end private def comment_params params[:comment].permit(:text, :prototype, :user).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) end end
routes.rb Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :prototypes, only: [:index, :new, :create, :show, :edit, :update, :destroy] resources :comments, only: [:create, :show] end

試したこと
routes.rbの記述に全角スペースがないか確認した。

イメージ説明

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

no1knows

2020/11/26 21:42

毎回、気になっているので質問です。 プロトタイプ(prototype)という言葉は、プログラマーだと一般的に分かる言葉なのでしょうか? それともプロトタイプというコントローラーやモデルをご自身で命名しているだけなのでしょうか?
guest

回答1

0

ベストアンサー

該当のviewが無いので恐らくにはなります。

コメントを送信しようとすると、というのはcomment createしようとすると、ということでしょうか?
恐らくviewのform_withが間違っているのでは?
エラーを見たところprototypeのコントローラーを動かそうとしているように見えます。

投稿2020/11/30 19:43

tomtomtomtom

総合スコア563

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問