48件ヒット
[1-48件を表示]
(0.107秒)
モジュール
-
Net
:: HTTPHeader (36) -
OpenURI
:: OpenRead (12)
キーワード
-
content
_ type= (12) - read (12)
-
set
_ content _ type (12)
検索結果
先頭4件
-
Net
:: HTTPHeader # content _ type -> String|nil (18126.0) -
"text/html" のような Content-Type を表す 文字列を返します。
...は nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data'
req.content_type # => "multipart/form-data"
//}... -
Net
:: HTTPHeader # content _ type=(type) (6127.0) -
type と params から Content-Type: ヘッダフィールドの 値を設定します。
...][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data' # => "multipart/form-data"
req.content_type # => "multipar... -
Net
:: HTTPHeader # set _ content _ type(type , params = {}) (6127.0) -
type と params から Content-Type: ヘッダフィールドの 値を設定します。
...][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data' # => "multipart/form-data"
req.content_type # => "multipar... -
OpenURI
:: OpenRead # read(options = {}) -> String (13.0) -
自身が表す内容を読み込んで文字列として返します。 self.open(options={}) {|io| io.read } と同じです。 このメソッドによって返される文字列は OpenURI::Meta によって extend されています。
...のメソッドによって返される文字列は OpenURI::Meta
によって extend されています。
@param options ハッシュを与えます。
require 'open-uri'
uri = URI.parse('http://www.example.com/')
str = uri.read
p str.is_a?(OpenURI::Meta) # => true
p str.content_type...