My code looks like this

  #     record[field_name] = get_children(field_name)
  eval "record.#{field_name} = get_children(field_name)"

record is an ActiveRecord subclass, and the field in question is a has_a relationship. The commented line does not work (though it seems to, but the assign does not take place).

How can I do this without eval?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

There may be a more Railsy way to do this, but at least you can eliminate the eval by using send (from Object), which all Object instances have:

record.send "#{field_name}=", get_children(field_name)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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