我爲Ruby使用visionmedia google search庫,我找不到在我的搜索中選擇結果數量的方法。我看了一下將search.size
選項從:large
更改爲:small
,但它似乎沒有任何區別。我如何將結果限制爲只有五個URL。如何限制紅寶石谷歌搜索結果的數量?
require "google-search"
uris=[]
i=0
Google::Search::Web.new do |search|
i = i + 1
next if i == 6
search.query = "where is peru?"
search.size = :small
puts i
end.each_item { |item| uris << item.uri }
print uris
完美工作。謝謝 :) –