简体   繁体   中英

Returning javascript from rails helper

I am having problems returning javascript from helper functions. I am unable to get the following test case to work:

function in helpers/application_helper.rb

def show_stuff
    return '$("div#flash").html("<p> stuff </p>");'
end

now I try to call this helper function in general.js.erb

<%= show_stuff %>

Here is the output

$(&quot;div#flash&quot;).html(&quot;&lt;p&gt; stuff &lt;/p&gt;&quot;);

I've also tried show_stuff.html_safe and raw show_stuff and had no luck. I feel the issue is Rails auto-escaping html but have been unable to find a solution.

ERB is escaping the characters in your outputted Javascript.

To prevent this happening use the raw method in your template.

<%= javascript_tag do %>
    <%= raw(show_stuff) %>
<% end %>

I've added the javascript_tag method around this for context.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM