2011-06-20 45 views

回答

2

您可以對要保存的頁面執行獲取請求。然後你將這個響應的主體保存到MongoDB中。

require 'net/http' 

url = URI.parse('http://www.example.com/index.html') 
req = Net::HTTP::Get.new(url.path) 
res = Net::HTTP.start(url.host, url.port) {|http| 
    http.request(req) 
} 

res.body <- Save this to your MongoDB 
相關問題