0

我的 rails4 应用程序的控制器中有以下代码:

# resolve the soft links and archive all photos for the current download
archived_photos = archive_current_download_photos(current_downloads_dir)

respond_to do |format|

  if !File.exists?(archived_photos)
    format.json { 
      render :nothing => true, :status => 500
    }
  else
    format.json {
      send_file(archived_photos, :disposition => "attachment", :filename => "photos.zip", :type => 'application/zip')
    }
  end

end

以及 javascript 中的处理:

   download photos request

   ajax_download = (valuesToSubmit, download_url, http_method) ->

   # AJAX
   $.ajax
    type: http_method
    url: download_url #sumbits it to the given url of the form
    data: valuesToSubmit # form
    dataType: "json"
    error: (error) ->
      console.log("DEBUG: error")
      return
    success: (data) ->

      console.log("DEBUG: success")
      return

   return false

调用此函数时,我没有下载,但我看到数据已下载。

如何强制 Chrome 开始下载(不使用 link_to,而是在响应后立即开始下载)?

4

2 回答 2

0

尝试设置window.location为您的 rails 应用程序的强制下载 url 路径。?

我想这应该可以工作,因为不会加载新页面并且强制下载会弹出文件。

于 2013-10-11T02:29:34.320 回答
0

您不能通过 ajax 调用强制下载文件。我认为 Chrome 支持它,但你不会得到一个可靠的跨浏览器解决方案工作 IMO。

最好的办法是使用window.location或链接将用户发送到另一个页面:

<a href='download_url' target='_blank'>click</a>
于 2013-10-11T03:06:14.007 回答