我正在尝试使用Rails创建注册表单。它正在工作,但它不会显示验证中的错误(它会验证,但错误不会显示)。
以下是我的文件:
# new.html.erb
<h1>New user</h1>
<% form_for :user, :url =>{:action=>"new", :controller=>"users"} do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :password %><br />
<%= f.password_field :password %>
</p>
<p>
<%= f.submit 'Create' %>
</p>
<% end %>
<%= link_to 'Back', users_path %>
# user.rb
class User < ActiveRecord::Base
validates_presence_of :name
validates_presence_of :password
end
#users_controller.rb
class UsersController < ApplicationController
def index
@users = User.all
end
def show
@user = User.find(params[:id])
end
def new
if session[:user_id].nil?
if params[:user].nil? #User hasn't filled the form
@user = User.new
else #User has filled the form
user = User.new(params[:user])
if user.save
user.salt = rand(1000000000)
user.password = Digest::MD5.hexdigest(user.salt.to_s + user.password)
user.save
flash[:notice] = 'User was successfully created.'
session[:user_id] = user.id
session[:password] = user.password
redirect_to url_for(:action=>"index",:controller=>"users")
else
render :action=>"new"
end
end
else #User is already logged in
flash[:notice] = 'You are already registered.'
redirect_to url_for(:action=>"index")
end
end
# some other actions removed....
end
为什么不显示错误?
谢谢!
答案 0 :(得分:6)
你的表单POST操作应该真正指向create方法,新方法实际上只是为了呈现表单。我的意思是它旁边的问题,但它是Rails惯例。
您的问题的答案是,在您尝试保存用户的分支中,您需要将User对象设置为INSTANCE变量。你只需将它作为局部变量。因此,当表单呈现时,表单助手会在当前作用域中查找实例变量“@user”,但它不存在。在分支的第二部分的用户变量前放置一个“@”,然后尝试进行保存。如果失败,则表单助手应显示错误。