我有一个像下面这样的类:
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 进行编码以指向特定的控制器功能,但我想了解我是否遗漏了一些东西,如果我是,我不确定是否阅读活动记录和操作包文档。