我是 Rails 的超级新手,我需要查看有关如何实现单表继承的示例代码,我有一个名为 Listing 作为超类的模型,我有子类 LawFirms 和 Paralegal,这些都扩展了 Listing 模型, now i need to be able to create a new listing, but when i am creating i need the form to have an option to select either Law Firm or Paralegal, when Law Firm option is selected, it should show a form for creating a LawFirm object这与律师助理对象不同,因为律师事务所有辩护人,而律师助理不会有辩护人。
到目前为止,我的模型看起来像这样
类列表 < ActiveRecord::Base end
class LawFirm < Listing has_many :advocates end
类律师助理 < 上市结束
如何创建控制器?和形式?