在一个步骤中解析URI对象,并从中获取响应

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在一个步骤中解析URI对象,并从中获取响应相关的知识,希望对你有一定的参考价值。

URI objects can be opened directly by open-uri
  1. require "open-uri"
  2.  
  3. uri="http://www.ruby-lang.org/en/"
  4.  
  5. html=URI.parse(uri).read # string representation is the response body
  6.  
  7. http_headers=URI.parse(uri).read.meta # this hash's keys are also accessible as OpenURI instance methods, e.g. html.content_type

以上是关于在一个步骤中解析URI对象,并从中获取响应的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段中的 JSON 响应中的对象获取数据

需要解析来自其他网页的值。首先我需要调用其他网页并从中解析 XML 值

在 oracle 中使用 json

重定向时如何在 Safari 中保留 uri 片段?

将 JSON 响应解析为对象

Azure 机器人微软Azure Bot 编辑器系列 : 机器人/用户提问回答模式,机器人从API获取响应并组织答案 (The Bot Framework Composer tutorial(代码片段