Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to do something like this :

session[:continent][:filter] = params[:filter]

but it doesn't work, i got this error :

You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.[]=

Thank you for help!

share|improve this question

2 Answers

up vote 7 down vote accepted

You need to initialise session[:continent] to be a Hash first. Try this:

session[:continent] ||= {}
session[:continent][:filter] = params[:filter]
share|improve this answer

As far as I know you can only store basic stuff in the session object as it isn't a hash or an array.

Since the session object is just for a single instance of a web 'session' then there isn't really a need to go 'multidimensional', using session[:continent_filter] would be just fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.