如何在 Rails 应用程序中使用 Devise 修复重复的闪光警报消息?
How to fix duplicate flash alert messages using Devise in Rails app?
我正在使用 Devise 来处理用户身份验证。当用户注册时,我看到 2 条显示相同文本的闪现消息。
我相信蓝色的井是通过我application.html.erb渲染的:
<!-- Notice -->
<% if notice %>
<div class="alert alert-primary" role="alert">
<center><%= notice %></center>
</div>
<% end %>
但是,我无法弄清楚第二条消息的来源。对我应该去哪里有什么建议吗?
您可能正在使用 simple_form_for。 gem 处理错误通知。
我正在使用 Devise 来处理用户身份验证。当用户注册时,我看到 2 条显示相同文本的闪现消息。
我相信蓝色的井是通过我application.html.erb渲染的:
<!-- Notice -->
<% if notice %>
<div class="alert alert-primary" role="alert">
<center><%= notice %></center>
</div>
<% end %>
但是,我无法弄清楚第二条消息的来源。对我应该去哪里有什么建议吗?
您可能正在使用 simple_form_for。 gem 处理错误通知。