最新文章

LightBlog

2018/09/28

Rails內建函式

Net::HTTP.get 

這個方法,他會接受一個網址,然後把 Response 的 Body 部分以字串的形式傳回。
def get_weather_from_cwb     
uri = URI('https://www.cwb.gov.tw/V7/js/HDRadar_1000_n_val.js')     response = Net::HTTP.get(uri)     start_index = response.index('","') + 3     end_index = response.index('"),') - 1     "http://www.cwb.gov.tw" + response[start_index..end_index]
  end

沒有留言:

Adbox