在一个步骤中解析URI对象,并从中获取响应
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在一个步骤中解析URI对象,并从中获取响应相关的知识,希望对你有一定的参考价值。
URI objects can be opened directly by open-uri
require "open-uri" uri="http://www.ruby-lang.org/en/" html=URI.parse(uri).read # string representation is the response body http_headers=URI.parse(uri).read.meta # this hash's keys are also accessible as OpenURI instance methods, e.g. html.content_type
以上是关于在一个步骤中解析URI对象,并从中获取响应的主要内容,如果未能解决你的问题,请参考以下文章
需要解析来自其他网页的值。首先我需要调用其他网页并从中解析 XML 值
Azure 机器人微软Azure Bot 编辑器系列 : 机器人/用户提问回答模式,机器人从API获取响应并组织答案 (The Bot Framework Composer tutorial(代码片段