现在在我的 Rails 应用程序中,我存储了一个来自 url 的图像,该图像存储在我的系统tmp文件夹中。但问题是我正在使用heroku来运行这个 rails 应用程序,那么使用 heroku 运行时存储过程将如何?
def mail
@image = https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=5&choe=UTF-8
path_image = "/tmp/img.png"
open(@image) do |chart|
File.open(path_image, 'wb') {|f| f.write chart.read }
end
welcome(path_image)
end
谢谢