简化的“逻辑”模型,以便干净地访问高度规范化的数据库

时间:2012-10-02 19:18:11

标签: ruby-on-rails ruby forms simple-form

我知道使用表单添加/编辑/删除(嵌套)记录的一种方法是使用:accepts_nested_attributes_for:在相应的模型中。但是,当这个嵌套扩展到大约4个级别(由于数据库的规范化),并且我想在网站上显示所有这些级别以进行编辑时,这种方法似乎相当麻烦(而且很丑陋)。

我想知道是否有办法用getter和setter方法定义'super'模型,这些方法允许我在一个地方编辑必要的数据。作为简化示例,请考虑:

class Person < ActiveRecord::Base
  attr_accessible :name, :age

  has_one :address
end

class Address < ActiveRecord::Base
  attr_accessible :street, :zip, :country

  belongs_to :person
end

我想以一种形式显示/编辑/更新/等名称,年龄,街道,邮编,国家/地区。很清楚如何使用accepts_nested_attributes_for来做到这一点。但我希望有一个类,比如说,PersonalInformation,它通过传递来自Person的id来组合两个类中的字段名称,年龄,街道,zip,国家。然后我想使用这个类作为网站的界面。

3 个答案:

答案 0 :(得分:1)

像这里描述的表单对象:

http://robots.thoughtbot.com/activemodel-form-objects

我一直在尝试各种实现,并没有找到完美的解决方案,但它们确实简化了“将一堆模型结合在一起”。 codeclimate博客也触及它(项目#3):

http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models

codeclimate帖子使用包含ActiveModel模块的旧方法(除非你现在想要,否则不需要单独包含它们),但概念是相同的。

答案 1 :(得分:0)

我会推荐simple form宝石。我修改了他们文档中的一个示例,以反映您的模型完全符合您的要求:

<强>型号:

class Person < ActiveRecord::Base
  attr_accessible :name, :age

  has_one :address
end

class Address < ActiveRecord::Base
  attr_accessible :street, :zip, :country

  belongs_to :person
end

查看:

<%= simple_form_for @person do |f| %>
  <%= f.input :name %>
  <%= f.input :age %>
  <%= f.association :street %>
  <%= f.association :zip %>
  <%= f.association :country %>
  <%= f.button :submit %>
<% end %>

答案 2 :(得分:0)

您可以在Person模型上使用虚拟属性,并在每个可编辑Address属性的getter / setter中放置自定义分配逻辑。

class Person < ActiveRecord::Base
  attr_accessible :name, :age

  has_one :address

  def street=(new_street)
    # ...
  end
end

从长远来看,这可能最终会变得更加复杂。