controller class Public::SympathiesController < ApplicationController before_action :authenticate_customer! def create @post = Post.find(params[:post_id]) sympathy = @post.sympathies.new(customer_id: current_customer.id) sympathy.save end def destroy @post = Post.find(params[:post_id]) sympathy = @post.sympathies.find_by(customer_id: current_customer.id) sympathy.destroy end end view <% @posts.each do |post| %> <tr id="post_<%= post.id %>"> : <td class="sympathy-btn"><%= render "public/sympathies/sympathy-btn", post: post %></td> : <% end %> js> $("#post_<%= @post.id %> .sympathy-btn").html("<%= j(render 'sympathies/sympathy-btn', post: @post) %>");
何を質問したいのか書かれていないのでわかりません。
本来ファイルが違うコードをまとめてコードブロックにせず、分けましょう。
あなたの回答
tips
プレビュー