在我的rails应用程序中,我让用户下载文件
def download options = { :filename => @file_name, :type => 'application/zip', :disposition => 'attachment' } send_file(@path, options) end
这有效,用户可以看到打开或保存文件对话框。但是,用户永远不会为下载的文件指定文件名和目标文件夹。有没有办法可以使用rails standard send_file来增加这种灵活性?
答案 0 :(得分:0)
您必须在浏览器上设置的那些设置。