Próbuję przekonwertować klienta na stary backend z XMLHttpRequest, aby używał Fetch API zamiast, i mam problem ze zrozumieniem, co jest równoważne plikowi xhr.send (file) w pliku Fetch API w poniższym kodzie.Co to jest odpowiednik API Fetch API XMLHttpRequest.send (plik)?
input.addEventListener('change', function(event) {
var file = event.target.files[0];
var url = 'https://somedomain.com/someendpoint';
var xhr = new XMLHttpRequest();
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'image/jpeg');
xhr.send(file);
}
Wygrywasz! Dziękuję bardzo. –