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

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

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

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