“JavaScript Blob do złożenia” Kod odpowiedzi

URL do Blob JS

fetch('https://upload.wikimedia.org/wikipedia/commons/7/77/Delete_key1.jpg')
  .then(res => res.blob()) // Gets the response and returns it as a blob
  .then(blob => {
    // Here's where you get access to the blob
    // And you can use it for whatever you want
    // Like calling ref().put(blob)

    // Here, I use it to make an image appear on the page
    let objectURL = URL.createObjectURL(blob);
    let myImage = new Image();
    myImage.src = objectURL;
    document.getElementById('myImg').appendChild(myImage)
});
Wild Weasel

Blob do złożenia JavaScript

const file = new File(
				blob,
				'filename.png',
				{
					type: blob.type,
					lastModified: new Date().getTime()
				}
			)
Suman Majhi

JavaScript Blob do złożenia

const file = new File(
				[blob],
				'filename.png',
				{
					type: blob.type,
					lastModified: new Date().getTime()
				}
			)
Hungry Hare

Pobierz Blob z pliku JavaScript

Modern solution:

let blob = await fetch(url).then(r => r.blob());
The url can be an object url or a normal url.

Santino

Odpowiedzi podobne do “JavaScript Blob do złożenia”

Pytania podobne do “JavaScript Blob do złożenia”

Więcej pokrewnych odpowiedzi na “JavaScript Blob do złożenia” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu