2

我需要从 rails 中的方法调用带有参数的 URL。如何在 Rails 中调用 URL?例如,在方法中,我想调用这个 URL 请求:www.example.com?name=parameter01&password=parameter02

如何在 Rails 中调用这种类型的 url 方法?

4

1 回答 1

6

你试过这个:http ://ruby-doc.org/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTP.html ?

一个例子 :

require 'net/http'
uri = URI('http://example.com/index.html?key=value')
req = Net::HTTP.get(uri)
puts req #show result
于 2012-07-23T15:04:05.280 回答