我正在使用Wikipedia API来获取文章摘要。数据嵌套在每篇文章唯一的变量页面ID密钥中。
如果我最初没有extract
密钥的值,如何提取pages
密钥?
“Stack Overflow”的示例API response:
{
"query": {
"pages": {
"21721040": {
"pageid": 21721040, # this is a unique key value for each article
"ns": 0,
"title": "Stack Overflow",
"extract": "Stack Overflow is a privately held website, the flagship site of the Stack Exchange Network, created in 2008 by Jeff Atwood and Joel Spolsky, as a more open alternative to earlier Q&A sites such as Experts Exchange. The name for the website was chosen by voting in April 2008 by readers of Coding Horror, Atwood's popular programming blog.\nIt features questions and answers on a wide range of topics in computer programming. The website serves as a platform for users to ask and answer questions, and, through membership and active participation, to vote questions and answers up or down and edit questions and answers in a fashion similar to a wiki or Digg. Users of Stack Overflow can earn reputation points and \"badges\"; for example, a person is awarded 10 reputation points for receiving an \"up\" vote on an answer given to a question, and can receive badges for their valued contributions, which represents a kind of gamification of the traditional Q&A site or forum. All user-generated content is licensed under a Creative Commons Attribute-ShareAlike license. Questions are closed in order to allow low quality questions to improve. Jeff Atwood stated in 2010 that duplicate questions are not seen as a problem but rather they constitute an advantage if such additional questions drive extra traffic to the site by multiplying relevant keyword hits in search engines.\nAs of April 2014, Stack Overflow has over 2,700,000 registered users and more than 7,100,000 questions. Based on the type of tags assigned to questions, the top eight most discussed topics on the site are: Java, JavaScript, C#, PHP, Android, jQuery, Python and HTML."
}
}
}
}
更新:基于Uri的回应的解决方案...
key = response['query']['pages'].keys # => ["21721040"]
response['query']['pages'][key[0]]['extract'] # data
答案 0 :(得分:2)
您可以查看哈希的keys
:
response['query']['pages'].keys
# => ["21721040"]
答案 1 :(得分:0)
如果你正在使用Ruby 2.3,你可以选择#dig
:
首先使用解压缩键获取值:
key = response.dig('query', 'pages')&.keys.first
# => "21721040"
response.dig('query', 'pages', key, 'extract')
# => "Stack Overflow is a privately held website..."
直接获取extract
值:
response.dig('query', 'pages')&.values.dig(0, 'extract')
# => "Stack Overflow is a privately held website..."