[Rails] Escaping characters in links
I have the below link I am generating and type.name returns some
strings with a forward slash ("/"). This of course messes up routing.
I would like to escape it to %2F however I am unclear on how to do
that.
<%= link_to type.name, types_path(CGI::escape(type.name)) %>
If I do the below. it gives a no route error.
<%= link_to type.name, types_path(CGI::escapeHTML(type.name)) %>
Thanks.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home