微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – Rails – 混合’发送’和’尝试’

我有一个可能是零的对象.在下一行中,我根据某些条件动态获取对象的任何一个参数.我正在使用带有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'

有什么帮助?!

解决方法

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

帽子到Rails尝试方法.

mes_record.try(:send,“#{form}”)|| ‘无法使用’

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐