ruby-on-rails – Rails / Devise – 使用link_to自定义Flash消息(devise.en.yml)

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails / Devise – 使用link_to自定义Flash消息(devise.en.yml)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想定制devise提供的以下闪存msg
在devise.en.yml文件中:
devise:
   failure:
      unconfirmed: 'You have to confirm your account before continuing.'

与ruby代码,以获得一个链接到new_user_confirmation_path.

换句话说,我想要我的Flash消息显示如下:

'You have to confirm your account before continuing. Didn't receive confirmation instructions?'

哪里没有收到确认说明?是指向new_user_confirmation_path的链接.

我想知道如果我可以这样做,而不需要编辑用户控制器,因为Devise默认情况下不提供它.

感谢您的回答!

解决方法

new_user_confirmation_path是与/ users / confirmation / new相当的静态网址

所以你可以在devise.en.yml文件中做到这一点:

devise:
  failure:
    unconfirmed: "You have to confirm your account before continuing. <a href='/users/confirmation/new'>Didn't receive confirmation instructions?</a>"

在控制器中显示闪存的操作中,请确保使用.html_safe.闪光[:错误] .html_safe

原文链接:https://www.f2er.com/ruby/273604.html

猜你在找的Ruby相关文章