我需要从 rails 中的方法调用带有参数的 URL。如何在 Rails 中调用 URL?例如,在方法中,我想调用这个 URL 请求:www.example.com?name=parameter01&password=parameter02
如何在 Rails 中调用这种类型的 url 方法?
我需要从 rails 中的方法调用带有参数的 URL。如何在 Rails 中调用 URL?例如,在方法中,我想调用这个 URL 请求:www.example.com?name=parameter01&password=parameter02
如何在 Rails 中调用这种类型的 url 方法?
你试过这个: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