views:

474

answers:

2

Let's pretend I want to set all the fields I specify to be = "frog"

In the model I can set each one manually using:

self.field1 = 'frog'
self.desc_field = 'frog'
self.fieldx = 'frog'
etc....

But how can I this by putting the field names in an array?

When I try

fields_array=['field1','desc_field','fieldx']    
fields_array.each { |field|    
  self.field = 'frog'
}

It does not work. Any suggestions?

A: 

Try using the send method:

fields_array=['field1','desc_field','fieldx']    
fields_array.each { |field|    
  self.send("#{field}", 'frog')
}
John Topley
Action controller comes back with this error "wrong number of arguments (1 for 0)"
Datatec
+2  A: 

John Topley's answer above is basically correct, however since you want to assign values you want to doing something like:

fields_array=['field1','desc_field','fieldx']    
fields_array.each { |field|    
  self.send("#{field}=", 'frog')
}

Note the added equal sign. With that you're doing self.field1='frog' rather than self.field1('frog').

Jakob S
Good catch. I wasn't sure of the exact syntax for assignment and don't have a Ruby interpreter at hand.
John Topley