1
我學習了ruby並使用restsclient玩它我有以下測試代碼,我期待它返回1/false。我似乎無法使其工作。使用Ruby +休息客戶端退出代碼
[email protected]:~/tsamcode$ ./get.rb
[email protected]:~/tsamcode$ echo $?
0
#!/usr/bin/env ruby
require 'rest_client'
require 'json'
begin
response = RestClient.get("https://admin:[email protected]/isam/host_records/187.0.0.1/hostnames", :content_type => :json, :accept => :json)
return true if response.code == 200
rescue => e
return false unless response != 200
end
謝謝你的回答。我發現了退出和退出!我修改了它現在的代碼,它在救援後會退出!似乎是在做我期望的,但我想不是這樣做的方式。 – LupinDeterd 2015-03-13 19:39:23