gpt4 book ai didi

ruby-on-rails - 无法更新用户属性 - Rails 和 Devise

转载 作者:数据小太阳 更新时间:2023-10-29 07:27:22 26 4
gpt4 key购买 nike

我将 Rails (3.0.9) 与 Devise (1.5.3) 一起使用,并且我有一个用户模型,其中的属性由于某种我不知道的原因而无法更新。

这个 User 对象的表单有很多属性,包括来自 devise 的属性:例如 password 和 password_confirmation。

当我提交表单时,我在记录器中得到了这个:

警告:无法批量分配 protected 属性:current_password

但是当我将 current_password 添加到 attr_accessible 时,我得到:


ActiveRecord::UnknownAttributeError 在/users
未知属性:current_password

我不是很喜欢设计,但我认为 current_password 只是一个虚拟属性。这个错误很烦人,你知道为什么会这样吗?我一无所知。

顺便说一下,我的 Users::RegistrationsController#update 操作:

def update
logger.error "SALMONELLA " + self.resource.password.inspect

self.resource = resource_class.to_adapter.get!(send(:"current_#{resource_name}").to_key)

#params[:user].delete [:current_password]

if resource.update_attributes(params[:user])
Resque.enqueue(MdcUpdateUser, resource.id)
set_flash_message :notice, :updated if is_navigational_format?
sign_in resource_name, resource, :bypass => true
respond_with resource, :location => after_update_path_for(resource)
else
clean_up_passwords(resource)
respond_with_navigational(resource){ render_with_scope :edit }
end
end

我已经尝试使用 Devise 的 update_without_password 并尝试从 params[:user] 哈希中删除 current_password 但没有成功。

我很感激你给我的任何帮助。如果您认为此问题中缺少任何信息,请询问更多信息。

最佳答案

然后您可能还需要将 attr_accessor :current_password 添加到您的模型中。另见 Devise Wikithis issue以获得进一步的见解。

关于ruby-on-rails - 无法更新用户属性 - Rails 和 Devise,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11421873/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com