I have a :name attribute which i use for linking to User's Show Profile.
I needed the storing in the Database to be without Spacing so i used Gsub.
def name=(value)
write_attribute(:name, value.gsub(/\s+/, ""))
end
But upon Displaying that value again on some Show Page via
<%= link_to @show.name, @show %>
the name get's displayed without Spaces.
I Tried
raw(@show.name)
but this didn't worked either.
How do i maintain the un-spaced in the link but showing it with spaces on any page ?
My Model:
class Show < ActiveRecord::Base
belongs_to :user
validates :name, :presence => true, :uniqueness => true
validates :announcement, length: { maximum: 250 }
# Show Cover
has_attached_file :cover, styles: { show_cover: "870x150#"}
validates_attachment :cover,
content_type: { content_type: ['image/jpeg', 'image/jpg',
'image/png'] },
size: { less_than: 5.megabytes }
def to_param
name
end
def name=(value)
write_attribute(:name, value.gsub(/\s+/, ""))
end
end
If it's just for display, don't strip out spaces. Store the actual name, then define a method
username
which removes spaces from name.Something like following should work:
Then in your controller(s):
Update:
After having a chat with OP, understood that he is using
to_param
method inShow
model which returnedusername
(i.e.name
with all spaces removed). This caused a problem infind
method because the value in DB included spaces and the value being searched for did not have any spaces, as a result of which a DB specific function needed to be used e.g.where("replace(name, ' ', '') = ?", user_name)
in case of MySQL. Since the OP is using different databases in development and production, i.e. SQLite in development and PG in production. So, instead of crafting a solution that worked across different databases, recommended OP to use FriendlyId gem.