在Rails应用程序中设置下载文件的文件名,可以通过以下方法实现:
def download
send_file 'path/to/file.pdf', filename: 'custom_filename.pdf'
end
<%= link_to 'Download', '/path/to/file.pdf', filename: 'custom_filename.pdf' %>
def download_file
send_file 'path/to/file.pdf', filename: 'custom_filename.pdf'
end
在上述示例中,send_file
方法用于发送文件,filename
参数用于设置下载文件的文件名。这样,当用户点击下载链接或触发下载操作时,文件将以指定的文件名下载到用户的设备上。
领取专属 10元无门槛券
手把手带您无忧上云