javascript 图片下载

情景:

oss上面存储的图片,如果设置了 Content-Disposition 为 attachment,那么访问图片的时候是直接下载的;否则,访问是预览形式;

解决:
  1. 到oss客户端设置Content-Disposition,
  2. 后端设置 Content-Disposition,
  3. 前端实现,代码如下:
疑问:
  1. 设置了download属性为什么还要blobUrl?【有知道的帮忙解答下】
  2. URL.createObjectURL和URL.revokeObjectURL是干什么的?【最后有解答】
  3. 生成的alink.href为什么不能在地址栏输入直接访问?【最后有解答】
  4. ie浏览器 navigator.msSaveBlob 是干什么的?【最后有解答】
  5. 为什么要appendChild 和 remove ?【最后有解答】




    
    
    Document



    



URL.createObjectURL和URL.revokeObjectURL是干什么的?

URL.createObjectURL() 静态方法会创建一个 DOMString,其中包含一个表示参数中给出的对象的URL。这个新的URL 对象表示指定的 File 对象或 Blob 对象。

在每次调用 createObjectURL() 方法时,都会创建一个新的 URL 对象,即使你已经用相同的对象作为参数创建过。当不再需要这些 URL 对象时,每个对象必须通过调用 URL.revokeObjectURL() 方法来释放。
浏览器在 document 卸载的时候,会自动释放它们,但是为了获得最佳性能和内存使用状况,你应该在安全的时机主动释放掉它们。

生成的alink.href为什么不能在地址栏输入直接访问?

这个 URL 的生命周期和创建它的窗口中的 document 绑定。

ie浏览器 navigator.msSaveBlob 是干什么的?

存储blob或file的方法,非标准,不推荐,仅出于兼容目的保留

The Navigator.msSaveBlob() method saves the File or Blob to disk.

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

为什么要appendChild 和 remove ?

代码中对创建的 进行的 appendChild 和 remove 操作主要是为了兼容 FireFox 浏览器,在 FireFox 浏览器下调用该方法如果不将创建的标签添加到 body 里,点击链接不会有任何反应,无法触发下载,而在 Chrome 浏览器中则不受此影响。

你可能感兴趣的:(javascript 图片下载)