如何有条件地在Rails中向* args数组添加哈希?如果存在原始值,我不想踩踏原始值.
例如,我有一个接收数组的方法:
def foo(*args) # I want to insert {style: 'bar'} into args but only if !style.present? bar(*args) # do some other stuff end
我已经开始使用rails提供的extract_options和reverse_merge方法:
def foo(*args) options = args.extract_options! # remove the option hashes options.reverse_merge! {style: 'bar'} # modify them args << options # put them back into the array bar(*args) # do some other stuff end
它有效,但看起来很冗长,而且不是很ruby.我觉得我错过了什么.