What approach do you take for embedding links in flash messages?

后端 未结 3 1001
夕颜
夕颜 2020-12-24 13:29

The ability to have flash messages (notice, error, warning, etc) with embedded links is nice from a user interaction standpoint. However, embedding an anchor tag inside a f

3条回答
  •  旧时难觅i
    2020-12-24 14:20

    Just thought I would share this, since found answer I was looking for elsewhere:

    Works on rails 3.1

    flash[:notice] = "Proceed to #{view_context.link_to('login page', login_path)}".html_safe
    

提交回复
热议问题