我想在我的应用程序的任何位置显示sign_UP表单。我只知道如何使用sign_in表单执行此操作,但使用sign_up表单时,相同的方法不起作用。
[...]
<% unless user_signed_in? %>
<%= form_for("user", :url => user_session_path) do |f| %>
[...]
我在论坛上尝试了很多天,以找到解决此问题的方法。我希望有人可以帮助我。
谢谢!
答案 0 :(得分:6)
以下是我设法做到的方法。
我在home#index
我的档案:
查看/家/ index.html.erb 强>
<%= render :file => 'registrations/new' %>
<强>助手/ home_helper.rb 强>
module HomeHelper
def resource_name
:user
end
def resource
@resource = session[:subscription] || User.new
end
def devise_mapping
@devise_mapping ||= Devise.mappings[:user]
end
def devise_error_messages!
return "" if resource.errors.empty?
messages = resource.errors.full_messages.map { |msg| content_tag(:li, msg) }.join
sentence = I18n.t("errors.messages.not_saved",
:count => resource.errors.count,
:resource => resource_name)
html = <<-HTML
<div id="error_explanation">
<h2>#{sentence}</h2>
<ul>#{messages}</ul>
</div>
HTML
html.html_safe
end
end
你需要那个部分,因为Devise使用名为resource
的东西,应该定义它,这样你就可以在任何地方调用你的registration#new
。
就像那样,你应该能够注册。但是,我需要在同一页面上显示错误。这是我添加的内容:
layout / home.html.erb (索引视图使用的布局)
<% flash.each do |name, msg| %>
# New code (allow for flash elements to be arrays)
<% if msg.class == Array %>
<% msg.each do |message| %>
<%= content_tag :div, message, :id => "flash_#{name}" %>
<% end %>
<% else %>
# old code
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<% end %> #don't forget the extra end
<% end %>
我找到了这段代码here
这是我创建的内容:如果会话中的文件无效,我保存了我的资源对象,这样用户就不会再次填写每个字段。我想一个更好的解决方案存在,但它有效,对我来说足够了;)
<强>控制器/ registration_controller.rb 强>
def create
build_resource
if resource.save
if resource.active_for_authentication?
# We delete the session created by an incomplete subscription if it exists.
if !session[:subscription].nil?
session[:subscription] = nil
end
set_flash_message :notice, :signed_up if is_navigational_format?
sign_in(resource_name, resource)
respond_with resource, :location => redirect_location(resource_name, resource)
else
set_flash_message :notice, :inactive_signed_up, :reason => resource.inactive_message.to_s if is_navigational_format?
expire_session_data_after_sign_in!
respond_with resource, :location => after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords(resource)
# Solution for displaying Devise errors on the homepage found on:
# https://stackoverflow.com/questions/4101641/rails-devise-handling-devise-error-messages
flash[:notice] = flash[:notice].to_a.concat resource.errors.full_messages
# We store the invalid object in session so the user hasn't to fill every fields again.
# The session is deleted if the subscription becomes valid.
session[:subscription] = resource
redirect_to root_path #Set the path you want here
end
end
我想我没有忘记任何代码。随意使用您需要的任何东西。
干杯!
答案 1 :(得分:0)
rails generate devise:install
。这将生成所有设计视图。
之后在视图render 'devise/users/new'
或类似的东西中,现在无法检查语法。