В этом сценарии есть post_id из комментариев, но я хотел бы получить комментарии в постконтроллере, у которого просто есть идентификатор из ресурса post, поэтому post_id в комментариях и id из post - это один и тот же идентификатор, поэтому я попыталсясвязать оба по
def set_post
@post = Post.find(params[:id])
end
def set_comment_post
@post = Post.find_by(post_id: set_post)
end
хорошо, журнал выдает ошибку
, так что, пожалуйста, кто-нибудь пощадит подсказку по этому поводу?
class PostsController < ApplicationController
before_action :set_comment_post only: [:comments]
before_action :set_post, only: [:show, :update, :destroy], except: [:comments]
before_action :set_user, only: [:show, :update, :destroy, :new]
# GET /posts
# GET /posts.json
def comments
@comments = @post.comments.order('created_at desc')
render json: @comments
end
# POST /posts
# POST /posts.json
def create
@post = current_user.posts.build(post_params)
if @post.save
render json: "Posted successfully", status: 201
else
render json: @post.errors, status: :unprocessable_entity
end
end
# PATCH/PUT /posts/1
# PATCH/PUT /posts/1.json
def update
if @post.update(post_params)
render json: "Posted updated successfully", status: 200
else
render json: @post.errors, status: :unprocessable_entity
end
end
private
def set_user
@current_user = User.find_by(params[:id])
end
# Use callbacks to share common setup or constraints between actions.
def set_post
@post = Post.find(params[:id])
end
def set_comment_post
@post = Post.find_by(:post_id => set_post)
end
# Never trust parameters from the scary internet, only allow the white list through.
def post_params
params.require(:post).permit(:title, :body, :user_id, :posts_count)
end
end
параметры передаются по запросу
"/posts/" + this.props.match.params.post_id + "/comments",