ruby on rails - Inject data members to an object -


this question based on another question of mine(thankfully answered).

so if in model have this:

def self.find_extended     person = person.find(:first)     complete_name = person.firstname + ', ' + person.lastname     return person end 

how can inject complete name in person object in controller/view can access person.complete_name?

thank time,
silviu

i think best way creation of complete_name attribute in person class:

def complete_name   firstname + ', ' + lastname end 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -