私はユーザー認証にauthlogicを使用するRubyonRailsを初めて使用し、以下のコードで正常に動作します
def current_user_session
return @current_user if defined?(@current_user_**sesssion**)
@current_user_session = UserSession.find
end
しかし、コードではありません
def current_user_session
return @current_user if defined?(@current_user_session)
@current_user_session = UserSession.find
end
セッションのスペルに注意してください(@current_user_session内)
これが論理的なエラーであろうと他の何かであろうと、誰かがこれについて助けることができますか?