这可能是非常基本的,但我似乎无法弄明白。
基本上,当我尝试使用表单创建新用户,并且用户详细信息已经存在且不是唯一时,我收到以下错误:
ArgumentError in UsersController#create
too few arguments
Application Trace | Framework Trace | Full Trace
app/controllers/users_controller.rb:61:in `format'
app/controllers/users_controller.rb:61:in `create'
以下是我create
中的user_controller.rb
操作:
# POST /users
# POST /users.xml
def create
@user = User.new(params[:user])
if @user.save
flash[:notice] = 'User successfully created' and redirect_to :action=>"index"
else
format.html { render :action => "new" }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
end
end
这是我的user.rb
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :username, :password, :password_confirmation, :remember_me
validates :email, :username, :presence => true, :uniqueness => true
end
这也是我的表格:
<%= simple_form_for(@user) do |f| %>
<div class="field">
<%= f.input :username %>
</div>
<div class="field">
<%= f.input :email %>
</div>
<div class="field">
<%= f.input :password %>
</div>
<div class="field">
<%= f.input :password_confirmation %>
</div>
<div class="actions">
<%= f.button :submit %>
</div>
<% end %>
答案 0 :(得分:6)
在这种情况下format
是什么?
没有respond_to
块,把它重新放入!您引用了其他一些format
。
答案 1 :(得分:4)
代码的确切布局在不同的rails版本中有所改变(请发布您正在使用的版本 - 检查Gemfile)。
此示例适用于rails 3+(使用3.2.5生成,但应适用于所有3+或至少3.1+版本)
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
format.html { redirect_to @user, notice: 'Blob was successfully created.' }
format.json { render json: @user, status: :created, location: @user}
else
format.html { render action: "new" }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end
P.S。 simple_form是一个很好的选择,它让生活变得更轻松!