我喜欢 simple_form 中的新 .error_notification 功能,但我不知道如何在其中包含我的 recaptcha。我的代码如下所示:
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :email, :required => true, :autofocus => true %>
<%= f.input :password, :required => true %>
<%= recaptcha_tags %>
</div>
<div class="form-actions">
<%= f.button :submit, "Sign up" %>
</div>
<% end %>
我想我需要以某种方式告诉 simple_form 更多关于 recaptcha 的信息,但我找不到太多关于 .error_notification 的信息。
谢谢你的帮助!