1

我有一个像下面这样的类:

class Child < ApplicationRecord
  belongs_to :father
  belongs_to :mother
end 

我的目标是创建端点

  • base-url/father/children #获取父亲的所有孩子
  • base-url/mother/children #获取母亲的所有孩子

我想知道嵌套这些资源的正确方法是什么我知道我可以这样做一种方式,例如:

class ChildrenController < ApplicationController
  before action :set_father, only: %i[show] 
  def show
     @children = @father.children.all
    render json: @children
  end
... 

但是我怎样才能得到相同的 base-url/mother/children,这可以通过嵌套资源实现吗?我知道如果需要,我可以对 routes.rb 进行编码以指向特定的控制器功能,但我想了解我是否遗漏了一些东西,如果我是,我不确定是否阅读活动记录和操作包文档。

4

1 回答 1

0

我使用的实现如下:我的子控制器:

  def index
    if params[:mother_id]
      @child = Mother.find_by(id: params[:mother_id]).blocks
      render json: @child
    elsif params[:father_id]
      @child = Father.find_by(id: params[:father_id]).blocks
      render json: @child
    else
      redirect_to 'home#index'
    end
  end
...

我的 routes.rb 文件:

Rails.application.routes.draw do
  resources :mother, only: [:index] do
    resources :child, only: [:index]
  end

  resources :father, only: [:index] do
    resources :child, only: [:index]
  end
...
  • base_url/mother/{mother_id}/children #获取母亲的所有孩子
  • base_url/father/{father_id}/children #获取父亲的所有孩子
于 2019-12-17T16:58:39.250 回答