I have a name attribute on a Person model and every time I access the name attribute, I want name.capitalize to be returned.
Doing the following inside the model won't work,
def name
name.capitalize
end
so what is the alternative?
|
I have a Doing the following inside the model won't work,
so what is the alternative? |
||||
|
|
|
I suggest you to create a secondary method with your custom formatters.
This is a better solution compared with overwriting the default implementation because setter and getters might called when updating/writing/saving the record to the database. I remember once when I overwrote the default implementation of an attribute and each time a record was saved, the attribute was updated with the formatted value. If you want to follow this way you can use
Also you can overwrite name and call
Again, don't do this. Go ahead and create a custom method. |
|||||||
|
|
But happens when name is null? capitalize will throw an undefined method for nil::Class if self[:name] returns nil. The following covers that:
But I agree that you should create the formatted method and leave the name method as is. Never know when you might need the raw data. FYI: the reason why your method didn't work was because it was causing, what I like to call, a self referring loop. You are redefining the method but calling the method in the new method. So you have to use |
||||
|
|