我试图点击这个新创建的锚点:
$('.file-status').html("Finished downloading <a class='download' download href='#{fileEntry.toURL()}'>#{name}</a>")
$('.download').click()
但是没有调用点击事件。不知道这是为什么?
我试图强制下载,而不是在浏览器中打开链接。像 Dropbox 一样
编辑
这是代码,所以更清楚:
fileEntry.createWriter ((fileWriter) ->
fileWriter.onwriteend = (e) ->
$('.file-status').html("Finished downloading <a class='download' download href='#{fileEntry.toURL()}'>#{name}</a>")
$('.download').trigger('click');
fileWriter.onerror = (e) ->
console.log "Write failed: " + e.toString()
fileWriter.write blob
), errorHandler
更新:
因此,在从下面的答案中了解到这实际上是不可能的之后,除非服务器使用标头 Content-disposition: 附件将数据发送给我。但在我看来,这对于纯 HTML5 JS 应用程序来说是一个非常糟糕的解决方案,可能是离线的。
所以我发现了这个,它处理得非常棒!它工作得很好。链接在这里:
http://updates.html5rocks.com/2011/08/Saving-generated-files-on-the-client-side
希望这可以帮助那些想做同样事情的人,因为我相信有很多人!