0
我使用"gem 'devise', '~> 4.2'"
,我需要得到current_user與一些auth_token,但方法"User.find_by_authentication_token"
被刪除。我可以使用什麼方法,或者我怎樣才能獲得當前用戶。我使用json api。我如何獲得用戶,如果我有auth_token
我使用"gem 'devise', '~> 4.2'"
,我需要得到current_user與一些auth_token,但方法"User.find_by_authentication_token"
被刪除。我可以使用什麼方法,或者我怎樣才能獲得當前用戶。我使用json api。我如何獲得用戶,如果我有auth_token
嘗試:
User.find_by(authentication_token: "abcd1234")
未被設計提供,但導軌(更具體的ActiveRecord)。文檔here。
動態find_by_attribute_name
方法已從ActiveRecord中刪除。
@SantoshSharma ty man。這真的幫我:) –