javascript - No flash message output in console -


i have controller hit via ajax call , sets flash[:info] string. controller renders js.erb file put:

console.log("<%= flash["info"] %>") 

but unfortunately nothing output in console. how can output message ?

it's because flash[:info] doesn't equal flash["info"], have use 1 type. should work:

console.log("<%= flash[:info] %>") 

Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -