3

我试图了解 RestClient.send 的定义无济于事:-(

让我向你解释我的意思:

我一直在检查 iqengines.com ruby​​ api gem,他们使用 RestClient.send 调用他们的 api:

https://github.com/iqengines/ruby-iqengines/blob/master/lib/iqengines.rb

现在他们使用 RestClient gem 和这个调用来发送 http 请求:
response = RestClient.send(method, url, fields)

我查看了rest_client gem https://github.com/archiloque/rest-client,我无法理解rest-client gem 定义 RestClient.send(...) 方法的位置!

任何帮助将不胜感激!

4

1 回答 1

3

send方法是 Ruby 的一部分。见这里:http ://ruby-doc.org/core-1.9.3/Object.html#method-i-send

于 2012-12-05T16:00:55.350 回答