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

I'm using an IF statement in Ruby on Rails to try and test if request parameters are set. Regardless of whether or not both parameters are set, the first part of the following if block gets triggered. How can I make this part ONLY get triggered if both params[:one] and params[:two] is set?

if (defined? params[:one]) && (defined? params[:two])
 ... do something ...
elsif (defined? params[:one])
 ... do something ...
end
share|improve this question

6 Answers

up vote 70 down vote accepted

You want has_key?:

if(params.has_key?(:one) && params.has_key?(:two))

Just checking if(params[:one]) will get fooled by a "there but nil" and "there but false" value and you're asking about existence. You might need to differentiate:

  • Not there at all.
  • There but nil.
  • There but false.
  • There but an empty string.

as well. Hard to say without more details of your precise situation.

share|improve this answer
If a param is nil, it's not there. – Jacob Relkin Apr 12 '11 at 1:46
@Jacob Why is that? mu is right. – sawa Apr 12 '11 at 1:49
1  
@sawa It's not possible to pass a nil parameter. If the parameter exists, it will be an empty string. – Jacob Relkin Apr 12 '11 at 1:51
3  
@Jacob: There's no guarantee that params hasn't been pre-processed before we get to where we're checking what's in it. Hence my list of possible special cases to check. Best to say exactly what you mean IMHO. – mu is too short Apr 12 '11 at 1:55
@Jacob: Consider a tool that allowed you to specify very specific pre-conditions for your controller methods. Instead of a simple :id in a route somewhere, you could say that id should be numeric and that it should be the ID number of a thing that the current user has write access to. Then, params[:id] would end up being that object or nil if the ID was given but it didn't pass the precondition rules. I've built argument preprocessors like this, they wipe out a huge class of bugs for little effort. – mu is too short Apr 12 '11 at 8:43

Simple as pie:

if !params[:one].nil? and !params[:two].nil?
  #do something...
elsif !params[:one].nil?
  #do something else...
elsif !params[:two].nil?
  #do something extraordinary...
end
share|improve this answer
That doesn't check if the parameter is there but actually set to nil. – Daemin Apr 12 '11 at 2:02
@Daemin In reality though, a parameter cannot be set to nil in a request header. It's either nil or a string. – Jacob Relkin Apr 12 '11 at 2:21
Yes but as other people have stated, it might get modified by something else, a plugin, gem, or your own code, or just fails to parse for some bizarre reason. – Daemin Apr 12 '11 at 2:26

use blank? http://api.rubyonrails.org/classes/Object.html#method-i-blank-3F

unless params[:one].blank? && params[:two].blank?

will return true if its empty or nil

also... that will not work if you are testing boolean values.. since

>> false.blank?
=> true

in that case you could use

unless params[:one].to_s.blank? && params[:two].to_s.blank?
share|improve this answer

A very simple way to provide default values to your params: params[:foo] ||= 'default value'

share|improve this answer
if params[:one] && params[:two]
 ... do something ...
elsif params[:one]
 ... do something ...
end
share|improve this answer
if params[:one] && param[:two]
  ... excute code ..
end

You can also check if the parameters are empty by using params[:two].empty

share|improve this answer
While this covers the case where both parameters are defined. It does not cover the case where one of them evaluates to false. – EmFi Apr 12 '11 at 1:56

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.