我正在研究Rails服务器,我可以从中下载本地存储的电影和动漫等.这有点工作,但当我点击下载链接时,我必须刷新页面,以便下载实际开始.
这是处理下载的控制器:
class DownloadController < ApplicationController def index @title = params[:title] @name = params[:name] @path = '/media/sf_Anime,_VN,_LN/Watching,not watched yet/'+@title+'/'+@name send_file( @path ) end end
<% @episodes.each do |x| %> <p> <%= x %><%= link_to " Download",{controller: 'download',action: 'index',title: @title,name: x } %> </p> <% end %>
编辑:
我今天做了一些测试,并注意到如果我尝试发送较小的文件(文本或图像),下载链接会立即生效.我还注意到下载链接实际上适用于电影,但下载开始需要20-30秒.
你知道导致这种延迟的原因吗?
解决方法
你在使用turbolinks吗? Turbolinks显然不能与send_file(
https://github.com/rails/turbolinks/issues/182)很好地配合.尝试在link_to帮助器中添加“data:{no-turbolink:true}”(或“’data-no-turbolink’=> true”),例如:
<%= link_to "Downloadable File",downloadable_file,data: { no-turbolink: true } %>
另见:Rails 4,asset pipeline causes user downloadable files to be downloaded twice,rails won’t send_data as file,Ruby on Rails send_file,code in controller action running twice