前提・実現したいこと
Railsにていいねの非同期通信化には成功したのですが、いいねの多い順に投稿を表示させる機能を実装することができたのですが、多い順に表示する際に非共同通信化ができません
該当のソースコード
bookscontroller
1class BooksController < ApplicationController 2 before_action :authenticate_user! 3 4 def show 5 @book = Book.find(params[:id]) 6 @book_new = Book.new 7 @user = @book.user 8 @book_comment = BookComment.new 9 end 10 11 def index 12 @books = Book.includes(:favorited_users).sort{|a,b| b.favorited_users.size <=> a.favorited_users.size} 13 @user = User.find(current_user.id) 14 @book = Book.new 15 end 16 17 def create 18 @book = Book.new(book_params) 19 @book.user_id = current_user.id 20 if @book.save 21 redirect_to book_path(@book) 22 flash[:notice]= "You have created book successfully." 23 else 24 @books = Book.all 25 @user = User.find(current_user.id) 26 render 'index' 27 end 28 end 29 30 def edit 31 @book = Book.find(params[:id]) 32 if @book.user == current_user #URLを入力しても画面に飛ばせない 33 render "edit" 34 else 35 redirect_to books_path 36 end 37 end 38 39 def update 40 @book = Book.find(params[:id]) 41 if @book.update(book_params) 42 redirect_to book_path(@book), notice: "You have updated book successfully." 43 else 44 render "edit" 45 end 46 end 47 48 def destroy 49 @book = Book.find(params[:id]) 50 @book.destroy 51 redirect_to books_path 52 end 53 54 private 55 56 def book_params 57 params.require(:book).permit(:title, :body) 58 end 59 60end
indexhtml
1<tbody> 2 <% books.each do |book| %> 3 <tr id="book_<%= book.id %>"> 4 <td> 5 <%= link_to user_path(book.user) do %> 6 <%= attachment_image_tag(book.user, :profile_image, :fill,40,40,fallback: "no-image-icon.jpg")%> 7 <%end%> 8 </td> 9 <td><%= link_to book.title, book_path(book), class: "book_#{book.id}" %></td> 10 <td><%= book.body %></td> 11 <td class="favorite-btn"><%= render "favorites/favorite-btn", book: book%></td> 12 <td>コメント数: <%= book.book_comments.count %></td> 13 </tr> 14 <%end%> 15 </tbody>
試したこと
いいねの多い順に表示する際にbooks_controllerのindexアクションに
@books = Book.includes(:favorited_users).sort{|a,b| b.favorited_users.size <=> a.favorited_users.size}を追加することで
いいにの多い順に表示することができたのですが、非同期通信できず、いいね機能自体は
非同期通信化できています
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー