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

ruby-on-rails – 如何向* args添加哈希?

如何有条件地在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.我觉得我错过了什么.

解决方法

是的,#extract_options!是在Rails中实现它的方法.如果你想要更优雅,你必须使用别名,或者找到你自己的方式来处理这个需求,或者由已经完成它的人搜索gem.

原文地址:https://www.jb51.cc/ruby/270331.html

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

相关推荐