类 Gem::Net::HTTP::Patch
用于表示 HTTP 方法 PATCH 的类
require 'rubygems/vendor/net-http/lib/net/http' uri = Gem::URI('http://example.com') hostname = uri.hostname # => "example.com" uri.path = '/posts' req = Gem::Net::HTTP::Patch.new(uri) # => #<Gem::Net::HTTP::Patch PATCH> req.body = '{"title": "foo","body": "bar","userId": 1}' req.content_type = 'application/json' res = Gem::Net::HTTP.start(hostname) do |http| http.request(req) end
请参阅 请求头。
属性
相关
-
Gem::Net::HTTP#patch
:发送PATCH
请求,返回响应对象。
常量
- METHOD
- REQUEST_HAS_BODY
- RESPONSE_HAS_BODY