0
如何從Rails應用程序寫入臨時文件(位於計算機的臨時文件夾中),我正在使用Spreadsheet::Workbook.new
,我希望將內容寫入臨時文件如何從Rails寫入臨時文件
如何從Rails應用程序寫入臨時文件(位於計算機的臨時文件夾中),我正在使用Spreadsheet::Workbook.new
,我希望將內容寫入臨時文件如何從Rails寫入臨時文件
您可以使用Ruby的Tempfile
:
file = Tempfile.new('prefix')
或塊:
Tempfile.new('prefix') do |file|
# do the work with the file
end