I am working on rails and I want to check whether user key is present or not in session hash. How can I check this?
PS: I don't want to check whether this value is nil or not. I want to check weather user KEY exists or not.
session
Hash's has_key? method tells you whether a given key is present or not.
Hash
has_key?
session.has_key?("user")
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
28829 times
active
sessionin rails is a hash (with indifferent access - though that's irrelevant to the question), not an array). I fixed that for you. – sepp2k Dec 24 '10 at 22:08