如何在Ruby中使用来自哈希的查询参数构造URI

Posted

技术标签:

【中文标题】如何在Ruby中使用来自哈希的查询参数构造URI【英文标题】:How to construct URI with query arguments from hash in Ruby 【发布时间】:2016-01-20 07:53:59 【问题描述】:

如何通过传递哈希来构造带有查询参数的URI对象?

我可以生成查询:

URI::HTTPS.build(host: 'example.com', query: "a=#hash[:a], b=#[hash:b]")

生成

https://example.com?a=argument1&b=argument2

但是我认为为许多参数构造查询字符串将是不可读且难以维护的。我想通过传递哈希来构造查询字符串。如下例所示:

hash = 
  a: 'argument1',
  b: 'argument2'
  #... dozen more arguments

URI::HTTPS.build(host: 'example.com', query: hash)

引发

NoMethodError: undefined method `to_str' for :a=>"argument1", :b=>"argument2":Hash

是否可以使用 URI api 基于哈希构造查询字符串?我不想修补哈希对象...

【问题讨论】:

【参考方案1】:

对于那些不使用 Rails 或 Active Support 的人,使用 Ruby 标准库的解决方案是

hash = 
  a: 'argument1',
  b: 'argument2'

URI::HTTPS.build(host: 'example.com', query: URI.encode_www_form(hash))
=> #<URI::HTTPS https://example.com?a=argument1&b=argument2>

【讨论】:

【参考方案2】:

如果您有 ActiveSupport,只需在哈希上调用 '#to_query'

hash = 
  a: 'argument1',
  b: 'argument2'
  #... dozen more arguments

URI::HTTPS.build(host: 'example.com', query: hash.to_query)

=&gt; https://example.com?a=argument1&amp;b=argument2

如果你不使用 Rails,记得require 'uri'

【讨论】:

to_query 是 Rails 唯一的方法。它在 Ruby 中不存在。 @marc_ferna questions 有 ruby​​ on rails 标签。您可以包括:非 Rails 项目中的 ActiveSupport

以上是关于如何在Ruby中使用来自哈希的查询参数构造URI的主要内容,如果未能解决你的问题,请参考以下文章

Ruby URI:使用“param[]=value”为数组参数构建 URI

如何在 Ruby 中复制哈希?

如何使用 IRC URI 方案打开查询窗口?

使用来自另一个哈希的新值更新了 Ruby 哈希数组

如何检查我的哈希是否有来自字符串数组的键?

从数组 ruby​​ 生成哈希键和值