gpt4 book ai didi

ruby-on-rails - 使用 rails 4 设计而不更新用户

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

我将应用程序升级到 Rails 4,一切正常。我可以登录并转到我的编辑页面。也更新了观点。使用标准 View 时,用户会更新。但是当我添加例如字段 :name 时,它​​不会在表单中更新。

使用 devise 3.1.1 和 gem 'protected_attributes'

我需要在设备或数据库上运行某种更新命令吗?

我也搜索过这个地方,找到了许多不同的解决方案,但没有一个会更新我的用户字段。我没有添加任何自定义字段。

最佳答案

如果您想允许额外的参数,您可以在 ApplicationController 中使用 before filter,因为 Rails 4 将参数清理从模型移到了 Controller 。

class ApplicationController < ActionController::Base
before_filter :configure_permitted_parameters, if: :devise_controller?

protected

def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) << :name << :surname << :username
devise_parameter_sanitizer.for(:account_update) << :name << :surname << :username
end
end

您还可以找到更多 here .

关于ruby-on-rails - 使用 rails 4 设计而不更新用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19455434/

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