非同期でコメント投稿・削除機能を実装しているのですが、削除の際に下記エラーが出てしまいます。おそらく削除後にビューがうまく渡せていないのだと思いますが、jsファイルの記述が違うのでしょうか。(ビューが表示されないだけで削除はできてます)どなたかアドバイス頂けますと助かります。
エラー
ActionController::UnknownFormat in BookCommentsController#destroy
BookCommentsController#destroy is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: []
Extracted source (around line #42):
40
41
42
43
44
45
"\nrequest.variant: #{request.variant.inspect}" raise ActionController::UnknownFormat, message elsif interactive_browser_request? message = "#{self.class.name}\##{action_name} is missing a template " \ "for this request format and variant.\n\n" \
Rails.root: /home/vagrant/work/bookers-app_6
book_comments コントローラー class BookCommentsController < ApplicationController def create @book = Book.find(params[:book_id]) @book_comment = current_user.book_comments.new(book_comment_params) @book_comment.book_id = @book.id @book_comment.save # @book_comments = BookComment.where(book_id: @book.id) # @book_comment = BookComment.new end def destroy BookComment.find_by(id: params[:id], book_id: params[:book_id]).destroy end private def book_comment_params params.require(:book_comment).permit(:comment) end end
books コントローラー def show @book = Book.find(params[:id]) @book_new = Book.new @book_comment = BookComment.new # @book_comments = @book.book_comments end
books/show ビュー <table class="table"> <thead> <tr> <th></th> </tr> </thead> <tbody class="comment_area"> <%= render 'book_comments/index', book: @book %> </tbody> </table>
_index.html.erb <% book.book_comments.each do |book_comment| %> <tr> <td> <%= link_to user_path(book_comment.user.id) do %> <%= attachment_image_tag(book_comment.user, :profile_image, :fill, 100,100, fallback: "no-image-mini.jpg") %> <br><%= book_comment.user.name %><br> <% end %> </td> <td> <%= book_comment.comment %> </td> <td> <% if book_comment.user == current_user %> <%= link_to 'Destroy', book_book_comment_path(book_comment.book, book_comment), method: :delete, remote: true, data: {confirm: "本当に削除してもよろしいですか?"}, class: "btn-sm btn-danger" %> <% end %> </td> </tr> <% end %>
destroy.js.erb $(".comment_area").html("<%= j(render 'book_comments/index', book: @book) %>");
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。