La risposta di @cschroed non ha funzionato per me nell'ultimo Rails (v4.2). Scavando nel codice sorgente di Rails, sembra che read_attribute
utilizzerà anche il valore della chiave primaria se la chiave passata è uguale a '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
Poiché, il metodo [] usa read_attribute
, non funziona più.
Ho scoperto che invece la lettura diretta dall'hash degli attributi ha funzionato:
# LegacyModel class
def other_id
@attributes.fetch_value('id')
end
Ciò ha fornito un mezzo per aggirare read_attribute
imitando _read_attribute
.