This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This is pretty confusing until you know what's going on... | |
# | |
# See http://techspry.com/ruby_and_rails/html_safe-and-helpers-in-rails-3-mystery-solved/ | |
# for an explanation... | |
# | |
ruby-1.8.7-p334 :025 > foo_safe = "<p>foo</p>".html_safe | |
=> "<p>foo</p>" | |
ruby-1.8.7-p334 :026 > (foo_safe + "<p>bar</p>").html_safe # not what you thought! unintuitive! | |
=> "<p>foo</p><p>bar</p>" | |
ruby-1.8.7-p334 :027 > "#{foo_safe}<p>bar</p>".html_safe # I think it works because of the implicit to_s | |
=> "<p>foo</p><p>bar</p>" | |
ruby-1.8.7-p334 :028 > foo_safe.safe_concat("<p>bar</p>") # correct, but looks pretty clunky, right? | |
=> "<p>foo</p><p>bar</p>" |
1 comment:
Thanks a lot! I also was scratching my head :)
Post a Comment