前端之家收集整理的这篇文章主要介绍了
Ruby:如何评估每个send命令的多个方法?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个
XML :: Element …我想做类似的事情:
my_xml_element.send( “parent.next_sibling.next_sibling”)
在你的情况下,最好使用instance_eval
"Test".instance_eval{chop!.chop!} #=> "Te"
并为您的代码:
my_xml_element.instance_eval{parent.next_sibling.next_sibling}
原文链接:https://www.f2er.com/ruby/268393.html