StorageAccessHandle: createObjectURL()-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Hinweis: See createObjectURL()
to understand usage.
Syntax
js
handle.createObjectURL(object)
Parameter
object
-
Siehe
createObjectURL()
.
Rückgabewert
Ein String, der eine unpartitionierte Objekt-URL enthält, die verwendet werden kann, um auf den Inhalt des angegebenen Quell-object
zuzugreifen.
Ausnahmen
SecurityError
DomException
-
Wird ausgelöst, wenn kein Zugriff gewährt wurde.
Siehe createObjectURL()
Beispiele
js
document.requestStorageAccess({ createObjectURL: true }).then(
(handle) => {
console.log("createObjectURL access granted");
handle.createObjectURL(new Blob(["foo"]));
},
() => {
console.log("createObjectURL access denied");
},
);
Hinweis: Siehe Using the Storage Access API für ein vollständigeres Beispiel.
Spezifikationen
Specification |
---|
Extending Storage Access API (SAA) to non-cookie storage # ref-for-dom-storageaccesshandle-createobjecturl |
Browser-Kompatibilität
BCD tables only load in the browser