##困っていること・前提
詳細ページからその投稿者のプロフィールページへ遷移させるリンクを作成したのですが、
投稿者のプロフィールに遷移されるのではなく現在ログインしているユーザのプロフィールに遷移されてしまいます。
URLを見るとprofiles/1やprofiles/2と正しいく遷移されているのですが現在ログインしているユーザの
プロフィールに遷移されてしまいます。
ユーザ情報にはdeviseを使っています。
##user.rb
class User < ApplicationRecord devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable has_one_attached :image has_many :posts, dependent: :destroy validates :name, presence: true end
##post.rb
class Post < ApplicationRecord has_many_attached :images has_one_attached :video belongs_to :user has_many :users end
##他人のプロフィールページへ遷移させるリンクのコード
posts/show.html.erb
<div class="profile-img"> <%= link_to profile_path(@post.user.id) do %> <% if @post.user.image.attached? %> <%= image_tag @post.user.image, class: 'h-profile' %> <% else %> <%= image_tag 'nouser.png', class: 'h-profile' %> <% end %> <% end %> </div>
##追記
##posts_controller.rb
class PostsController < ApplicationController before_action :authenticate_user! before_action :find_post, only: [:index, :show, :edit, :update, :destory] before_action :force_redirect_unless_my_post, only: [:edit, :update, :destory] def index @posts = Post.all.order(created_at: :desc) @posts = Post.page(params[:page]).per(25).order('updated_at DESC') end def show @post = Post.find_by(id: params[:id]) end def new @post = Post.new end def edit end def create @post = Post.new(post_params) @post.user = current_user if @post.save! redirect_to root_path, notice: '投稿成功!!' else render :new end end def update if @post.update(post_params) redirect_to root_path, notice: '投稿を更新しました。' else render :edit end end def destory if @post.destory redirect_to root_path, notice: '投稿を削除しました。' else redirect_to root_path, alert: '投稿が削除できませんでした。' end end private def post_params params.require(:post).permit( :thumbnail, :title, :version, :code, :description, :video, images: [], ) end def find_post @post = Post.find_by(params[:id]) end def force_redirect_unless_my_post return redirect_to root_path, alert: '自分の投稿ではありません' if @post.user != current_user end end
##profiles_controller.rb
class ProfilesController < ApplicationController before_action :authenticate_user! def show @profile = current_user end private end
回答1件
あなたの回答
tips
プレビュー