RubyonRailsのDeviseでユーザー情報うをパスワードなしで更新するときにハマった話
1066 ワード
以下の通り書いたのだけれどね、Railsくん
unknown attribute 'current_password'
と、オッシャイマスノ。
\app\controllers\users\registrations_controller.rb
def update_resource(resource, params)
resource.update_without_password(params)
end
原因は、以下の記入漏れでした。
\app\models\user.rb
attr_accessor :current_password
これで、パスワードの入力なしに、ユーザー情報を更新することができました。
Author And Source
この問題について(RubyonRailsのDeviseでユーザー情報うをパスワードなしで更新するときにハマった話), 我々は、より多くの情報をここで見つけました https://qiita.com/ytojima/items/43dfa14d5567207782c5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .