如何使用自定义分配方法进行批量分配

时间:2013-04-30 21:31:01

标签: ruby-on-rails-3.2 rails-activerecord

这让我完全疯了。我有一个自定义设置器和一个用于电话号码字段的自定义getter:

class Person < ActiveRecord::Base
  attr_accessible :phone

  def phone=(p)
    p = p.to_s.gsub(/\D+/, '') 
    p = p[1..-1] if p.length == 11 && p[0] == '1' 
    write_attribute(:phone, p)
  end

  def phone(format=:display)
    case format
    when :display then return pretty_display(attributes['phone'])
    when :dialable then return dialable(attributes['phone'])
    else return attributes['phone']
  end
end

case语句中的方法只是我实际实现的存根,所以不需要挂断它们。当我直接使用对象时,这些get和set方法运行良好。例如:

person = Person.find(1)
person.phone = '(888) 123.4567'`)
puts person.phone            # => 888.123.4567
puts person.phone(:dialable) # => +18881234567
puts person.phone(:raw)      # => 8881234567

但是当我执行像person.update_attributes( :phone => '(888) 123.4567' )这样的批量分配时,该属性会直接设置,绕过我的自定义setter方法,然后验证失败,因为它不是原始形式。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

不幸的是,似乎没有太多的解决方案。我最终放弃了它,只是将代码复制到before_save过滤器中。看起来很可恶,但这就是生活......