5

当用户点击忘记密码时,它会将他们带到忘记密码页面,其中有一个字段供他们输入他们的电子邮件地址。如果他们的电子邮件地址在数据库中,一切都很好,但如果数据库中不存在该电子邮件地址,它只会重定向到同一页面,但不会显示错误消息。

如何让错误消息出现?

/view/devise/passwords/new.html.erb

...
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
    <h1>Reset Password</h1>     

    <div class="login-fields">

        <p>Instructions on resetting your password will be emailed to you.</p>

        <%= render :partial => '/shared/messages' %>

        <div class="field">
            <%= f.label :email %>
            <%= f.email_field :email, :placeholder => 'Email', :class => 'login username-field' %>
        </div> <!-- /field -->

    </div> <!-- /login-fields -->

    <div class="login-actions">

        <%= content_tag(:button, :type=>:submit, :class => "button btn btn-secondary btn-large") do %>
            Send me reset password instructions
        <% end %>

    </div> <!-- .actions -->

    <div class="login-social">
        <%= render "devise/shared/links" %>
    </div>

<% end %>
...

/views/shared/_messages.html.erb

<% if alert || flash[:alert] || flash[:error] %>
    <div class="alert alert-error">
        <a class="close" data-dismiss="alert" href="#">x</a>
        <h4 class="alert-heading">Error!</h4>
        <%= alert %>
        <%= flash[:error] %>
    </div>
<% end %>

<% if flash[:success] || notice || flash[:notice]%>
    <div class="alert alert-success">
        <a class="close" data-dismiss="alert" href="#">x</a>
        <h4 class="alert-heading">Success!</h4>
        <%= flash[:success] %>
        <%= notice %>
    </div>
<% end %>
4

3 回答 3

7

在您的部分共享消息中,您仅显示来自控制器的错误。您需要包含附加到模型的错误。在这种情况下,错误消息附加到用户模型。您 /views/shared/_messages.html.erb 实际上应该如下所示:

<% if alert || flash[:alert] || flash[:error] %>
    <div class="alert alert-error">
      <a class="close" data-dismiss="alert" href="#">x</a>
      <h4 class="alert-heading">Error!</h4>
      <%= alert %>
      <%= flash[:error] %>
    </div>
<% end %>
<% if model.errors.any? %>
    <div class="alert alert-error">
      <a class="close" data-dismiss="alert" href="#">x</a>
      <h4 class="alert-heading">Error!</h4>
      <ul>
        <% model.errors.full_messages.each do |msg| %>
            <li>* <%= msg %></li>
        <% end %>
      </ul>
    </div>
<% end %>
<% if flash[:success] || notice || flash[:notice]%>
    <div class="alert alert-success">
      <a class="close" data-dismiss="alert" href="#">x</a>
      <h4 class="alert-heading">Success!</h4>
      <%= flash[:success] %>
      <%= notice %>
    </div>
<% end %>

并且在渲染部分时,您需要传入模型。

<%= render '/shared/messages', model: resource %>
于 2013-11-05T09:24:50.180 回答
3

如果您passwords/new.html.erb查看 devise 附带的默认视图,您会看到它包含对

<%= devise_error_messages! %>

如果愿意,您可以在视图中使用相同的帮助器来呈现附加到用户对象的错误消息(正如 Anurag 的回答中指出的那样,消息附加到模型对象而不是闪存中)。

该助手将返回如下标记:

<div id="error_explanation">
  <h2>1 error prohibited this user from being saved</h2>
  <ul><li>email not found</li></ul>
</div>

如果你想定制这个,你可以很容易地做到这一点。只是不要使用帮助程序,而是添加您自己的自定义标记来访问resource.errors.full_messages以获取“找不到电子邮件”消息。或者老实说,因为这是您将在此页面上遇到的唯一错误,您可以这样做:

<% unless resource.errors.empty? %>
  <div>email not found</div>
<% end %>
于 2013-11-05T18:38:38.520 回答
0

表单正在调用create. password_path确保create.html.erb显示有关错误和成功的闪烁消息(如果存在)。

于 2013-11-03T19:33:05.950 回答