2

初めて懸念事項を使用し、アドバイスを探しています。

私は location.rb という名前の Rails モデルを持っており、AlbumDefineConcern を含めて、現在どのモデル クラスにいるのか (このクラス Location 内) をクエリしたいと考えています。

私は持っている:

class Location < ActiveRecord::Base
  include AlbumDefineConcern
  ...

module AlbumDefineConcern
  extend ActiveSupport::Concern
  albums={}
  albums_locations = ["LocationHomeFeed","LocationProfile","LocationMobileMain"]
  albums[:locations]=albums_locations
  # I'd like it to output location or Location
  puts "here is class_name #{self.name}" 

クラス名として「場所」を取得するにはどうすればよいですか?

#  puts "here is class_name #{self.parent.name}" => Object
4

1 に答える 1