class Chair < ActiveRecord::Base
has_many :buildings, :as => :faculty
end
class Department < ActiveRecord::Base
has_many :buildings, :as => :faculty
end
class Building < ActiveRecord::Base
belongs_to :faculty, :polymorphic => true
end
在路线文件中我有:
resources :departments do
resources :buildings do
end
resources :chairs do
resources :buildings do
end
如何在一个控制台中为部门和主席建立一个新建筑物。我知道,我可以创建另一个有用的功能,它将检查谁创建Building:
class BuildingsController < ApplicationController
def new
@parent = faculty
@building = @parent.buildings.build
end
end
在application_controller中:
def faculty
if params[:department_id]
Department.find(params[:department_id])
elsif params[:chair_id]
Chair.find(params[:chair_id])
end
end
但是我在问,还有其他铁路的方法吗?也许在Rails3中存在一些我可以用来获取信息的方法:谁想要创建建筑,而不需要实现另一个功能系统。
答案 0 :(得分:0)
在那里你还需要做一些额外的功能,但是你不必在参数列表上做出ifs:http://railscasts.com/episodes/154-polymorphic-association