在rails 4中,我使用HomeController
gem来获取移动应用功能。在移动应用中,我需要提供下载grape
文件选项。我已经引用了这个How to allow Binary File download using GRAPE API,但是这里没有生成文件。
除了移动应用程序(在网络端)我使用
下载文件.pdf
请帮我编写一个生成并下载file_path = "#{Rails.root}/public/downloads/#{@user.id}_guide.pdf"
pdf = WickedPdf.new.pdf_from_string(render_to_string('public/guide/template', :layout=> false))
File.open(file_path, 'wb') do |file|
file << pdf
end
return file_path
文件的API