Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose I have the following string

@x = "<a href='#'>Turn me into a link</a>"

In my view, I want a link to be displayed. That is, I don't want everything in @x to be unescaped and displayed as a string. What's the difference between using

<%= raw @x %>
<%= h @x %>
<%= @x.html_safe %>

?

share|improve this question

2 Answers

up vote 135 down vote accepted

Considering Rails 3:

html_safe actually "sets the string" as HTML Safe (it's a little more complicated than that, but it's basically it). This way, you can return HTML Safe strings from helpers or models at will.

h can only be used from within a controller or view, since it's from a helper. It will force the output to be escaped. It's not really deprecated, but you most likely won't use it anymore: the only usage is to "revert" an html_safe declaration, pretty unusual.

Prepending your expression with raw is actually equivalent to calling html_safe on it, but, just like h, is declared on a helper, so it can only be used on controllers and views.

Here's a nice explanation on how the SafeBuffers (the class that does the html_safe magic) work: http://yehudakatz.com/2010/02/01/safebuffers-and-rails-3-0/

share|improve this answer
12  
I wouldn't say that h will ever be deprecated. Using "Hi<br/>#{h@ user.name}".html_safe is quite common and an accepted use. – Maletor Jul 19 '11 at 23:21
1  
@Maletor interesting usage, though I still think it falls into the "unusual" category. – Fábio Batista Jul 20 '11 at 14:52
5  
@Fábio Batista Not unusual at all, here it is in a Railscast at the bottom: asciicasts.com/episodes/204-xss-protection-in-rails-3 – William Jones Jul 24 '11 at 2:39
2  
String#html_safe actually returns an instance of ActiveSupport::SafeBuffer which wraps the original string and is #html_safe? . The original string does not become #html_safe? after calling #html_safe on it. – greenagain Apr 13 '12 at 15:57
Thanks for the complement, @greenagain… I intentionally simplified the explanation and included a link to SafeBuffer's complete article for those curious enough. – Fábio Batista Apr 16 '12 at 19:42

I think it bears repeating: .html_safe does not html escape your string. In fact, it will prevent your string from being escaped.

<%= "<script>alert('Hello!')</script>" %>

will put

&lt;script&gt;alert(&#x27;Hello!&#x27;)&lt;/script&gt;

into your HTML source (yay, so safe!), while

<%= "<script>alert('Hello!')</script>".html_safe %>

will pop up the alert dialog (are you sure that's what you want?). So you probably don't want to call .html_safe on any user-entered strings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.