模型的未定义方法`read_attributes'

时间:2013-07-16 13:02:34

标签: ruby-on-rails ruby

以下是模型中的代码:

class MyModel < ActiveRecord::Base
  def role
    read_attributes(:role).to_sym
  end

  def role= value
    write_attributes :role, value.to_s
  end
end

但我得到了下一个错误:

undefined method read_attributes for MyModel:0x00000003014070

1 个答案:

答案 0 :(得分:0)

因为read_attributes不是方法。它是read_attribute