Присвоение динамического списка атрибутов другому классу
Я имею Person
класс со следующими атрибутами:
Person.attribute_names
# => ["id", "first_name", "last_name", "email", "age", "address_1", "address_2",
# "city", "state", "country", "is_active", "created_at", "updated_at"]
У меня есть другой класс PersonFacade
, который должен содержать точно такие же атрибуты. У меня есть этот код:
class PersonFacade
attr_list = Person.attribute_names
attr_reader *attr_list
def initialize(p_object)
#p_object.attributes.slice(*Person.attribute_names)
# Line above is giving me the attributes, but I don't want to manually assign them.
end
end
Как я могу назначить Person
приписывает PersonFacade
атрибуты?
2 ответа
Решение
class PersonFacade
attr_reader *Person.attribute_names
def initialize(p)
p.attributes.each { |k,v| self.instance_variable_set("@#{k}", v) }
end
end
Я думаю, вы должны рассмотреть вопрос о расширении PersonFacade от Person. Это делает атрибуты Person доступными в PersonFacade легко.
class Person
@id=nil
@first_name=nil
def initialize(id, first_name)
@id = id
@first_name = first_name
end
attr_accessor :id, :first_name
end
class PersonFacade < Person
end
p = PersonFacade.new(1,"Harry")
print p.first_name