簡體   English   中英

使用Ruby / Rails Devise Gem的登錄通知

[英]Login notification using Ruby/Rails Devise Gem

我使用的是Devise Gem,需要在用戶成功登錄時顯示一條消息,而在登錄失敗時需要顯示一條消息。 我正在使用Ruby / Rails。 謝謝!

您可以修改sessions_controller

class SessionsController < ApplicationController
  def create
    ...
    redirect_to root_path, notice: "Signed in sucessfully"
  end
end

確定一些搜索后,我找到了答案。 在您的application.html.erb添加以下內容:

<% flash.each do |name, msg| %>
        <%= content_tag(:div, msg, class: "alert alert-info") %>

<% end %>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM