为什么alias_method在Rails模型中失败

时间:2013-05-24 05:05:39

标签: ruby-on-rails ruby activerecord rails-activerecord alias-method

class Country < ActiveRecord::Base

  #alias_method :name, :langEN # here fails
  #alias_method :name=, :langEN=

  #attr_accessible :name

  def name; langEN end # here works
end

在第一次通话alias_method失败时:

NameError: undefined method `langEN' for class `Country'

我的意思是当我执行Country.first时失败。

但是在控制台中我可以成功呼叫Country.first.langEN,并看到第二个呼叫也有效。

我错过了什么?

1 个答案:

答案 0 :(得分:50)

ActiveRecord使用method_missing(AFAIK via ActiveModel::AttributeMethods#method_missing)在第一次调用时创建属性访问器和mutator方法。这意味着当您调用alias_method并且langEN因“未定义方法”错误而失败时,没有alias_method :name, :langEN方法。明确地进行别名:

def name
  langEN
end

有效,因为首次尝试调用时,langEN方法会被创建(method_missing)。

Rails提供alias_attribute

  

alias_attribute(new_name,old_name)

     

允许您为属性创建别名,包括getter,setter和query方法。

你可以使用

alias_attribute :name, :langEN

内置method_missing将了解使用alias_attribute注册的别名,并根据需要设置相应的别名。