如object.attribute attribute 可能是 name 也可能是 value。
object.attribute
object.send :name object.send :value
已经查到了,object.send(attribute.to_sym)。
object.send(attribute.to_sym)
obj.name obj.value ???
@Rei 谢谢。
额 明白了
#2 楼 @zhang_xiangyu send 不必须传符号的,字符串就可以:
object.send(attribute)
这个应该叫动态方法调用~