0

我在我的介绍性 Ruby on Rails 类中构建了一个简单的地址簿应用程序,它使用单个控制器 (Entry) 使用嵌套表单为街道地址 (Address)、电子邮件地址 (Email) 和 Web 地址 (Web) 提供了单独的模型。我现在想更改最后两个模型(电子邮件和 Web)以使用来自基本 Url 表的单表继承。与使用正确的继承关系从头开始重建应用程序相比,这是否更可取(甚至可能)?

我在下面包含了我现有的模型:

class Entry < ActiveRecord::Base
  attr_accessible :first_name, :last_name, :addresses_attributes, :webs_attributes, :emails_attributes
  has_many :addresses, dependent: :destroy
  has_many :emails, dependent: :destroy
  has_many :webs, dependent: :destroy
  accepts_nested_attributes_for :addresses, :emails, :webs, allow_destroy: true, reject_if: :all_blank
end

class Address < ActiveRecord::Base
  belongs_to :entry
  belongs_to :address_type
  attr_accessible :address_type_id, :city, :state, :street, :zip
end

class Email < ActiveRecord::Base
  belongs_to :entry
  belongs_to :address_type
  attr_accessible :address_type_id, :email, :entry_id
  validates_email_format_of :email
end

class Web < ActiveRecord::Base
  belongs_to :entry
  belongs_to :address_type
  attr_accessible :address_type_id, :web, :entry_id
end

会怎么变

class Email < ActiveRecord::Base

class Web < ActiveRecord::Base

class Email < Url

class Web < Url

影响我现有的应用程序?

提前感谢您的帮助和建议。

4

2 回答 2

1

确保还添加 Url继承该类的ActiveRecord::Base类。

class Url < ActiveRecord::Base
  belongs_to :entry
  belongs_to :address_type
  attr_accessible :address_type_id :entry_id
end

class Email < Url
  attr_accessible :email
  validates_email_format_of :email
end

class Web < Url
  attr_accessible :web
end

还将额外的行添加到您的entry.rb

  has_many :urls, dependent: :destroy
于 2013-04-05T22:00:08.533 回答
0

可以生成一个设置单表继承的迁移,但不幸的是,如果不破坏我的应用程序中的其他内容,我无法成功地做到这一点。我继续使用新应用程序重新启动并正确实现了正确的继承。这符合时间和从头开始构建应用程序的实践。在现实世界的环境中,我相信花时间创建适当的迁移和对各种依赖项的更改是值得的。

感谢 Zippie 的建议。我很感激。

于 2013-05-23T21:01:11.353 回答