URL.createObjectURL()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015 .

實驗性質: 這是一個 實驗中的功能
此功能在某些瀏覽器尚在開發中,請參考 兼容表格 以得到不同瀏覽器用的前輟。

摘要

靜態方法 URL.createObjectURL() 用於建立一個帶有 URL 的 DOMString 以代表參數中所傳入的物件. 該 URL 的生命週期與創造它的 window 中的 document 一致. 這個新的物件 URL 代表了所指定的 File 物件 或是 Blob 物件。

備註: 此功能可在 Web Worker 中使用。

語法

objectURL = URL.createObjectURL(blob);