Railsアプリケーションに次のモデルがあります。
class Address < ActiveRecord::Base
belongs_to :addressable, :polymorphic => true
end
class Client < ActiveRecord::Base
has_one :address, :as => :addressable, dependent: :destroy
accepts_nested_attributes_for :address, :allow_destroy => true
has_many :invoices
end
class Invoice < ActiveRecord::Base
belongs_to :client
end
を使用してクライアント名を取得できますが、
@invoice.client.name
同様の方法でアドレス情報を取得できません。
請求書のビューで住所属性を取得するにはどうすればよいですか?