Odpowiedź @cschroed nie działała dla mnie w najnowszych Railsach (v4.2). Zagłębiając się w kod źródłowy Railsów, okazuje się, że read_attribute
użyje również wartości klucza podstawowego, jeśli przekazany klucz jest równy „id”:
ID = 'id'.freeze
# Returns the value of the attribute identified by <tt>attr_name</tt> after
# it has been typecast (for example, "2004-12-12" in a date column is cast
# to a date object, like Date.new(2004, 12, 12)).
def read_attribute(attr_name, &block)
name = attr_name.to_s
name = self.class.primary_key if name == ID
_read_attribute(name, &block)
end
Ponieważ metoda [] używa read_attribute
, to już nie działa.
Zauważyłem, że zamiast tego działa bezpośrednie czytanie z hash atrybutów:
# LegacyModel class
def other_id
@attributes.fetch_value('id')
end
Umożliwiło to ominięcie read_attribute
naśladując _read_attribute
.