使用 HTML 5、Javascript 和文件 API 下载文件
我们可以将 HTML 的 FileAccess API 与使用 javascript 的文件正常下载集成吗?
我们通常通过以下方式下载文件:
var fileUrl='../File.doc';
window.open(fileUrl,'Downloading');
现在我相信文件会被下载到tempFolder和我们指定下载的文件夹中。
但是我们是否可以将文件下载到沙盒位置,如 HTML 5 文件 API 的 WWC 草案。
如果可能的话,我相信“需要一种方法来删除我的 上一个问题将得到解决。
Can we integrate the FileAccess API of HTML with normal download of Files using javascript.
We typically download a file by the below way:
var fileUrl='../File.doc';
window.open(fileUrl,'Downloading');
Now I believe that the file would be downloaded to tempFolder and the folder designated by us for download.
But is it possible for us to download the file to a sandboxed location as mentioned in WWC draft on HTML 5 File API.
If this is possible, I believe "need for a way to delete downloaded files" of my previous question would be solved.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个新的
download
属性< /a> 您可以添加链接,告诉浏览器下载资源而不是导航到该资源。这会将文件下载到浏览器默认使用的任何“下载”文件夹。您无法以编程方式删除下载的文件。这将是一个安全风险。There's a new
download
attribute you can add to links that tells the browser to download the resource rather than navigating to it. That downloads the file to whatever "Downloads" folder the browser uses by default. You cannot programmatically delete files that are downloaded. That would be a security risk.