web api instance method
StorageAccessHandle: createObjectURL() method
[!NOTE] See
createObjectURL()to understand usage.
Syntax
createObjectURL(object)
Parameters
object- : See
createObjectURL().
- : See
Return value
A string containing an unpartitioned object URL that can be used to reference the contents of the specified source object.
Exceptions
SecurityErrorDomException- : Thrown if access was not granted.
Examples
document.requestStorageAccess({ createObjectURL: true }).then(
(handle) => {
console.log("createObjectURL access granted");
handle.createObjectURL(new Blob(["foo"]));
},
() => {
console.log("createObjectURL access denied");
},
);
[!NOTE] See Using the Storage Access API for a more complete example.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.