るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.026秒)

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file open
  4. file lstat
  5. file size

クラス

検索結果

Net::HTTP#post(path, data, header = nil, dest = nil) -> Net::HTTPResponse (27.0)

サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。

...例][ruby]{
# net/http version 1.1
response, body = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# using block
File
.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&tar...

Net::HTTP#post(path, data, header = nil, dest = nil) {|body_segment| .... } -> Net::HTTPResponse (27.0)

サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。

...例][ruby]{
# net/http version 1.1
response, body = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# using block
File
.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&tar...