Rails - 混合'发送'和'尝试'

时间:2015-03-22 12:55:04

标签: ruby-on-rails dynamic attributes

我有一个可能是零的对象。在下一行中,我根据某些条件动态获取对象的任何一个参数。我正在使用带有if else块的object.try()。现在我想使用send()以便我可以实现一些有效的代码。

form_name = 'parent' ( received from argument )
mes_record = Mark.first ( this can be nil )

if x == condition_1
    mes_record.parent
elsif x == condition_2
    mes_record.brother
elsif x == condition_3
    mes_record.sister
else
    mes_record.father
end

现在我想避免使用if else梯子并使用send。

 if mes_record.present?
      mes_record.send("#{form}")
 else
      mes_record = 'not available'
 end

我正在寻找类似尝试的东西。

   mes_record.try("dynamically substitute the attribute name here.") || 'not available'

任何帮助?!

2 个答案:

答案 0 :(得分:6)

尝试了一个小时后,我找到了解决方案。

Hats off to Rails try method。

mes_record.try(:send,“#{form}”)|| '不可用'

答案 1 :(得分:1)

更简洁的方法是:

  mes_record.try(form.to_sym) || 'not available'