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 - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -