我有一个帖子资源和一个用户评级资源。
在我的routes.rb
中,我在帖子中嵌套了用户评分:
jsonapi_resources :posts do
jsonapi_resources :user_ratings
end
这已正确地暴露了端点/posts/{id}/user-ratings
。
但是,在使用{id}
测试此结束点时,它会返回所有user-ratings
,而不仅仅是与该帖子ID关联的user-ratings
。
在我的帖子资源中,我尝试添加:has_many :user_ratings
,在我尝试添加的用户评分中添加:has_one :post
。
在我的模型中,我添加了has_many
和belongs_to
。
然而,我所尝试的只是让api返回与特定帖子ID相关联的用户评级。
任何见解都将不胜感激,谢谢。
答案 0 :(得分:2)
在routes.rb中有相关资源的特殊构造:
jsonapi_resources :posts do
jsonapi_related_resources :user_ratings
end
发布资源应
has_many :user_ratings
它会添加路由/帖子/ {id} / user_ratings,并且会通过post资源获取评级,你也可以覆盖records_for_ *方法以获得更多控制权:
def records_for_user_ratings
super.published
end
答案 1 :(得分:1)
在UserRating
模型中尝试has_one :issue
在routes.rb中,您不需要在user_ratings
中嵌套posts
当您运行rake routes
时,您应该看到嵌套posts\:post_id\user_ratings
,即使在routes.rb中未将其指定为嵌套
答案 2 :(得分:-3)
确保控制器的索引操作使用post_id
参数来过滤user_ratings
。例如:
# GET /user_ratings
def index
@post = Post.find(params[:post_id])
@user_ratings = @post.user_ratings
render json: @user_ratings
end
希望有所帮助。