我看过 Ryan railcasts 第 274 集我正在使用 rails 4 并遇到了一个问题。
在 password_resets_controller.rb
elsif @user.update_attributes(params[:user])
在控制台中显示
ActiveModel::ForbiddenAttributesError in PasswordResetsController#update
当我修改update_attributes
它update_attribute
显示
wrong number of arguments (1 for 2)
params[:user]
显示两个值password
,password_confirmation
但我password
在我的登录页面中使用
我不知道如何解决这个问题。