0
軒 任何想法如何下載文件在Ruby中我嘗試這一點,但它不是我的工作index.html.erb下載文件
我這樣做
require 'open-uri'
def index
File.open('/target/path/to/downloaded.file', "wb") do |file|
file.write open('http://example.com/your.file').read
end
end
,但它仍然不是工作